summaryrefslogtreecommitdiffstats
path: root/modules/openxr/openxr_api.h
diff options
context:
space:
mode:
authorDaniel Castellanos <decacis@gmail.com>2023-10-03 16:07:45 -0600
committerDaniel Castellanos <decacis@gmail.com>2023-10-05 01:34:51 -0600
commit771ec958af3a6ff0d0a9183b0ab7c73d98d8b953 (patch)
treee8ebe7ecc807634c77080af486db22c2ed92e723 /modules/openxr/openxr_api.h
parentf5696c311cdb09e0a34fa4ba7ef5d2524c515b89 (diff)
downloadredot-engine-771ec958af3a6ff0d0a9183b0ab7c73d98d8b953.tar.gz
Fixing incorrect swapchain release timing
Applied a couple of checks suggested by @dhoverml for when the XrResult is not XR_SUCCESS but is also not a failure. Also simplified checks from @BastiaanOlij feedback.
Diffstat (limited to 'modules/openxr/openxr_api.h')
-rw-r--r--modules/openxr/openxr_api.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/openxr/openxr_api.h b/modules/openxr/openxr_api.h
index 89f8f3cbec..64769b244c 100644
--- a/modules/openxr/openxr_api.h
+++ b/modules/openxr/openxr_api.h
@@ -139,6 +139,7 @@ private:
void *swapchain_graphics_data = nullptr;
uint32_t image_index = 0;
bool image_acquired = false;
+ bool skip_acquire_swapchain = false;
};
OpenXRSwapChainInfo swapchains[OPENXR_SWAPCHAIN_MAX];