From be3e12b18c210eab1a636f95cb1170d4e0248960 Mon Sep 17 00:00:00 2001 From: Lubosz Sarnecki Date: Thu, 14 Mar 2024 16:31:20 +0100 Subject: [PATCH] OpenXrContext: Improve errors when runtime is not available. --- plugins/openxr/src/OpenXrContext.cpp | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/plugins/openxr/src/OpenXrContext.cpp b/plugins/openxr/src/OpenXrContext.cpp index 700d488747..9b50057362 100644 --- a/plugins/openxr/src/OpenXrContext.cpp +++ b/plugins/openxr/src/OpenXrContext.cpp @@ -49,11 +49,14 @@ static bool initFunctionPointers(XrInstance instance) { OpenXrContext::OpenXrContext() { _isSupported = initPreGraphics(); if (!_isSupported) { - qCCritical(xr_context_cat, "Pre graphics init failed."); + qCWarning(xr_context_cat, "OpenXR is not supported."); } } OpenXrContext::~OpenXrContext() { + if (_instance == XR_NULL_HANDLE) { + return; + } XrResult res = xrDestroyInstance(_instance); if (res != XR_SUCCESS) { qCCritical(xr_context_cat, "Failed to destroy OpenXR instance"); @@ -65,7 +68,13 @@ bool OpenXrContext::initInstance() { uint32_t count = 0; XrResult result = xrEnumerateInstanceExtensionProperties(nullptr, 0, &count, nullptr); - if (!xrCheck(XR_NULL_HANDLE, result, "Failed to enumerate number of extension properties")) + // Since this is the first OpenXR call we do, check here if RUNTIME_UNAVAILABLE is returned. + if (result == XR_ERROR_RUNTIME_UNAVAILABLE) { + qCCritical(xr_context_cat, "XR_ERROR_RUNTIME_UNAVAILABLE: Is XR_RUNTIME_JSON set correctly?"); + return false; + } + + if (!xrCheck(XR_NULL_HANDLE, result, "Failed to enumerate number of extensions.")) return false; std::vector properties; @@ -75,7 +84,7 @@ bool OpenXrContext::initInstance() { } result = xrEnumerateInstanceExtensionProperties(nullptr, count, &count, properties.data()); - if (!xrCheck(XR_NULL_HANDLE, result, "Failed to enumerate extension properties")) + if (!xrCheck(XR_NULL_HANDLE, result, "Failed to enumerate extensions.")) return false; bool openglSupported = false; @@ -109,7 +118,13 @@ bool OpenXrContext::initInstance() { }; result = xrCreateInstance(&info, &_instance); - if (!xrCheck(XR_NULL_HANDLE, result, "Failed to create XR instance.")) + + if (result == XR_ERROR_RUNTIME_FAILURE) { + qCCritical(xr_context_cat, "XR_ERROR_RUNTIME_FAILURE: Is the OpenXR runtime up and running?"); + return false; + } + + if (!xrCheck(XR_NULL_HANDLE, result, "Failed to create OpenXR instance.")) return false; if (!initFunctionPointers(_instance))