diff options
author | Daniel Castellanos <decacis@gmail.com> | 2023-10-03 16:07:45 -0600 |
---|---|---|
committer | Daniel Castellanos <decacis@gmail.com> | 2023-10-05 01:34:51 -0600 |
commit | 771ec958af3a6ff0d0a9183b0ab7c73d98d8b953 (patch) | |
tree | e8ebe7ecc807634c77080af486db22c2ed92e723 /modules/openxr/openxr_api.h | |
parent | f5696c311cdb09e0a34fa4ba7ef5d2524c515b89 (diff) | |
download | redot-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.h | 1 |
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]; |