diff options
author | Bastiaan Olij <mux213@gmail.com> | 2024-04-09 16:15:42 +1000 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2024-04-10 10:35:19 +1000 |
commit | b67eba8399ca62dc2c8cca8d7f496400061e4b44 (patch) | |
tree | 273fdf9f462f4da3eaa839bf667c0a4a49179cc2 /modules/openxr | |
parent | 6c579280630715ff7da8310d405ef34194847294 (diff) | |
download | redot-engine-b67eba8399ca62dc2c8cca8d7f496400061e4b44.tar.gz |
OpenXR: apply fix for reverse Z
Diffstat (limited to 'modules/openxr')
-rw-r--r-- | modules/openxr/openxr_api.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/modules/openxr/openxr_api.cpp b/modules/openxr/openxr_api.cpp index 5438f5020c..1fe402341b 100644 --- a/modules/openxr/openxr_api.cpp +++ b/modules/openxr/openxr_api.cpp @@ -1204,10 +1204,12 @@ bool OpenXRAPI::create_main_swapchains(Size2i p_size) { depth_views[i].subImage.imageRect.offset.y = 0; depth_views[i].subImage.imageRect.extent.width = main_swapchain_size.width; depth_views[i].subImage.imageRect.extent.height = main_swapchain_size.height; + // OpenXR spec says that: minDepth < maxDepth. depth_views[i].minDepth = 0.0; depth_views[i].maxDepth = 1.0; - depth_views[i].nearZ = 0.01; // Near and far Z will be set to the correct values in fill_projection_matrix - depth_views[i].farZ = 100.0; + // But we can reverse near and far for reverse-Z. + depth_views[i].nearZ = 100.0; // Near and far Z will be set to the correct values in fill_projection_matrix + depth_views[i].farZ = 0.01; } }; @@ -1802,8 +1804,9 @@ bool OpenXRAPI::get_view_projection(uint32_t p_view, double p_z_near, double p_z // if we're using depth views, make sure we update our near and far there... if (depth_views != nullptr) { for (uint32_t i = 0; i < view_count; i++) { - depth_views[i].nearZ = p_z_near; - depth_views[i].farZ = p_z_far; + // As we are using reverse-Z these need to be flipped. + depth_views[i].nearZ = p_z_far; + depth_views[i].farZ = p_z_near; } } |