| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  openxr_composition_layer_extension.cpp                                */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "openxr_composition_layer_extension.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | #include <openxr/openxr.h>
 | 
					
						
							|  |  |  | #include <openxr/openxr_platform.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-20 13:09:20 -06:00
										 |  |  | #include "openxr_fb_update_swapchain_extension.h"
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #include "platform/android/api/java_class_wrapper.h"
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | #include "servers/rendering/rendering_server_globals.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // OpenXRCompositionLayerExtension
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRCompositionLayerExtension *OpenXRCompositionLayerExtension::singleton = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRCompositionLayerExtension *OpenXRCompositionLayerExtension::get_singleton() { | 
					
						
							|  |  |  | 	return singleton; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRCompositionLayerExtension::OpenXRCompositionLayerExtension() { | 
					
						
							|  |  |  | 	singleton = this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRCompositionLayerExtension::~OpenXRCompositionLayerExtension() { | 
					
						
							|  |  |  | 	singleton = nullptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HashMap<String, bool *> OpenXRCompositionLayerExtension::get_requested_extensions() { | 
					
						
							|  |  |  | 	HashMap<String, bool *> request_extensions; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	request_extensions[XR_KHR_COMPOSITION_LAYER_CYLINDER_EXTENSION_NAME] = &cylinder_ext_available; | 
					
						
							|  |  |  | 	request_extensions[XR_KHR_COMPOSITION_LAYER_EQUIRECT2_EXTENSION_NAME] = &equirect_ext_available; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	request_extensions[XR_KHR_ANDROID_SURFACE_SWAPCHAIN_EXTENSION_NAME] = &android_surface_ext_available; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	return request_extensions; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | void OpenXRCompositionLayerExtension::on_instance_created(const XrInstance p_instance) { | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	EXT_INIT_XR_FUNC(xrDestroySwapchain); | 
					
						
							|  |  |  | 	EXT_INIT_XR_FUNC(xrCreateSwapchainAndroidSurfaceKHR); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-05 17:25:28 +10:00
										 |  |  | void OpenXRCompositionLayerExtension::on_session_created(const XrSession p_session) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	OpenXRAPI::get_singleton()->register_composition_layer_provider(this); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRCompositionLayerExtension::on_session_destroyed() { | 
					
						
							|  |  |  | 	OpenXRAPI::get_singleton()->unregister_composition_layer_provider(this); | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	free_queued_android_surface_swapchains(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRCompositionLayerExtension::on_pre_render() { | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	free_queued_android_surface_swapchains(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	for (OpenXRViewportCompositionLayerProvider *composition_layer : composition_layers) { | 
					
						
							|  |  |  | 		composition_layer->on_pre_render(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OpenXRCompositionLayerExtension::get_composition_layer_count() { | 
					
						
							|  |  |  | 	return composition_layers.size(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | XrCompositionLayerBaseHeader *OpenXRCompositionLayerExtension::get_composition_layer(int p_index) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX_V(p_index, composition_layers.size(), nullptr); | 
					
						
							|  |  |  | 	return composition_layers[p_index]->get_composition_layer(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OpenXRCompositionLayerExtension::get_composition_layer_order(int p_index) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX_V(p_index, composition_layers.size(), 1); | 
					
						
							|  |  |  | 	return composition_layers[p_index]->get_sort_order(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-04 15:04:07 -05:00
										 |  |  | void OpenXRCompositionLayerExtension::register_viewport_composition_layer_provider(OpenXRViewportCompositionLayerProvider *p_composition_layer) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	composition_layers.push_back(p_composition_layer); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-04 15:04:07 -05:00
										 |  |  | void OpenXRCompositionLayerExtension::unregister_viewport_composition_layer_provider(OpenXRViewportCompositionLayerProvider *p_composition_layer) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	composition_layers.erase(p_composition_layer); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool OpenXRCompositionLayerExtension::is_available(XrStructureType p_which) { | 
					
						
							|  |  |  | 	switch (p_which) { | 
					
						
							|  |  |  | 		case XR_TYPE_COMPOSITION_LAYER_QUAD: { | 
					
						
							|  |  |  | 			// Doesn't require an extension.
 | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case XR_TYPE_COMPOSITION_LAYER_CYLINDER_KHR: { | 
					
						
							|  |  |  | 			return cylinder_ext_available; | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case XR_TYPE_COMPOSITION_LAYER_EQUIRECT2_KHR: { | 
					
						
							|  |  |  | 			return equirect_ext_available; | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		default: { | 
					
						
							|  |  |  | 			ERR_PRINT(vformat("Unsupported composition layer type: %s", p_which)); | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | bool OpenXRCompositionLayerExtension::create_android_surface_swapchain(XrSwapchainCreateInfo *p_info, XrSwapchain *r_swapchain, jobject *r_surface) { | 
					
						
							|  |  |  | 	if (android_surface_ext_available) { | 
					
						
							|  |  |  | 		OpenXRAPI *openxr_api = OpenXRAPI::get_singleton(); | 
					
						
							|  |  |  | 		ERR_FAIL_NULL_V(openxr_api, false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		XrResult result = xrCreateSwapchainAndroidSurfaceKHR(openxr_api->get_session(), p_info, r_swapchain, r_surface); | 
					
						
							|  |  |  | 		if (XR_FAILED(result)) { | 
					
						
							|  |  |  | 			print_line("OpenXR: Failed to create Android surface swapchain [", openxr_api->get_error_string(result), "]"); | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRCompositionLayerExtension::free_android_surface_swapchain(XrSwapchain p_swapchain) { | 
					
						
							|  |  |  | 	android_surface_swapchain_free_queue.push_back(p_swapchain); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRCompositionLayerExtension::free_queued_android_surface_swapchains() { | 
					
						
							|  |  |  | 	for (XrSwapchain swapchain : android_surface_swapchain_free_queue) { | 
					
						
							|  |  |  | 		xrDestroySwapchain(swapchain); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	android_surface_swapchain_free_queue.clear(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | ////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // OpenXRViewportCompositionLayerProvider
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRViewportCompositionLayerProvider::OpenXRViewportCompositionLayerProvider(XrCompositionLayerBaseHeader *p_composition_layer) { | 
					
						
							|  |  |  | 	composition_layer = p_composition_layer; | 
					
						
							|  |  |  | 	openxr_api = OpenXRAPI::get_singleton(); | 
					
						
							|  |  |  | 	composition_layer_extension = OpenXRCompositionLayerExtension::get_singleton(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRViewportCompositionLayerProvider::~OpenXRViewportCompositionLayerProvider() { | 
					
						
							| 
									
										
										
										
											2024-04-04 15:04:07 -05:00
										 |  |  | 	for (OpenXRExtensionWrapper *extension : OpenXRAPI::get_registered_extension_wrappers()) { | 
					
						
							|  |  |  | 		extension->on_viewport_composition_layer_destroyed(composition_layer); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	if (use_android_surface) { | 
					
						
							|  |  |  | 		free_swapchain(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		// This will reset the viewport and free the swapchain too.
 | 
					
						
							|  |  |  | 		set_viewport(RID(), Size2i()); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRViewportCompositionLayerProvider::set_alpha_blend(bool p_alpha_blend) { | 
					
						
							|  |  |  | 	if (alpha_blend != p_alpha_blend) { | 
					
						
							|  |  |  | 		alpha_blend = p_alpha_blend; | 
					
						
							|  |  |  | 		if (alpha_blend) { | 
					
						
							|  |  |  | 			composition_layer->layerFlags |= XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			composition_layer->layerFlags &= ~XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRViewportCompositionLayerProvider::set_viewport(RID p_viewport, Size2i p_size) { | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	ERR_FAIL_COND(use_android_surface); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	RenderingServer *rs = RenderingServer::get_singleton(); | 
					
						
							|  |  |  | 	ERR_FAIL_NULL(rs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	if (subviewport.viewport != p_viewport) { | 
					
						
							|  |  |  | 		if (subviewport.viewport.is_valid()) { | 
					
						
							|  |  |  | 			RID rt = rs->viewport_get_render_target(subviewport.viewport); | 
					
						
							| 
									
										
										
										
											2024-12-10 13:40:47 -06:00
										 |  |  | 			RSG::texture_storage->render_target_set_override(rt, RID(), RID(), RID(), RID()); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 		subviewport.viewport = p_viewport; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 		if (subviewport.viewport.is_valid()) { | 
					
						
							|  |  |  | 			subviewport.viewport_size = p_size; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			free_swapchain(); | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 			subviewport.viewport_size = Size2i(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRViewportCompositionLayerProvider::set_use_android_surface(bool p_use_android_surface, Size2i p_size) { | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	if (p_use_android_surface == use_android_surface) { | 
					
						
							| 
									
										
										
										
											2025-01-20 13:09:20 -06:00
										 |  |  | 		if (use_android_surface && swapchain_size != p_size) { | 
					
						
							|  |  |  | 			OpenXRFBUpdateSwapchainExtension *fb_update_swapchain_ext = OpenXRFBUpdateSwapchainExtension::get_singleton(); | 
					
						
							|  |  |  | 			if (fb_update_swapchain_ext && fb_update_swapchain_ext->is_android_ext_enabled()) { | 
					
						
							|  |  |  | 				swapchain_size = p_size; | 
					
						
							|  |  |  | 				fb_update_swapchain_ext->update_swapchain_surface_size(android_surface.swapchain, swapchain_size); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	use_android_surface = p_use_android_surface; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (use_android_surface) { | 
					
						
							|  |  |  | 		if (!composition_layer_extension->is_android_surface_swapchain_available()) { | 
					
						
							|  |  |  | 			ERR_PRINT_ONCE("OpenXR: Cannot use Android surface for composition layer because the extension isn't available"); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (subviewport.viewport.is_valid()) { | 
					
						
							|  |  |  | 			set_viewport(RID(), Size2i()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		swapchain_size = p_size; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		free_swapchain(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | void OpenXRViewportCompositionLayerProvider::create_android_surface() { | 
					
						
							|  |  |  | 	ERR_FAIL_COND(android_surface.swapchain != XR_NULL_HANDLE || android_surface.surface.is_valid()); | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!openxr_api || !openxr_api->is_running()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-19 16:54:05 -05:00
										 |  |  | 	void *next_pointer = nullptr; | 
					
						
							|  |  |  | 	for (OpenXRExtensionWrapper *wrapper : openxr_api->get_registered_extension_wrappers()) { | 
					
						
							|  |  |  | 		void *np = wrapper->set_android_surface_swapchain_create_info_and_get_next_pointer(extension_property_values, next_pointer); | 
					
						
							|  |  |  | 		if (np != nullptr) { | 
					
						
							|  |  |  | 			next_pointer = np; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-15 22:32:51 +02:00
										 |  |  | 	// Check to see if content should be protected.
 | 
					
						
							|  |  |  | 	XrSwapchainCreateFlags create_flags = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (protected_content) { | 
					
						
							|  |  |  | 		create_flags = XR_SWAPCHAIN_CREATE_PROTECTED_CONTENT_BIT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	// The XR_FB_android_surface_swapchain_create extension mandates that format, sampleCount,
 | 
					
						
							|  |  |  | 	// faceCount, arraySize, and mipCount must be zero.
 | 
					
						
							|  |  |  | 	XrSwapchainCreateInfo info = { | 
					
						
							|  |  |  | 		XR_TYPE_SWAPCHAIN_CREATE_INFO, // type
 | 
					
						
							| 
									
										
										
										
											2024-09-19 16:54:05 -05:00
										 |  |  | 		next_pointer, // next
 | 
					
						
							| 
									
										
										
										
											2025-07-15 22:32:51 +02:00
										 |  |  | 		create_flags, // createFlags
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 		XR_SWAPCHAIN_USAGE_SAMPLED_BIT | XR_SWAPCHAIN_USAGE_COLOR_ATTACHMENT_BIT | XR_SWAPCHAIN_USAGE_MUTABLE_FORMAT_BIT, // usageFlags
 | 
					
						
							|  |  |  | 		0, // format
 | 
					
						
							|  |  |  | 		0, // sampleCount
 | 
					
						
							|  |  |  | 		(uint32_t)swapchain_size.x, // width
 | 
					
						
							|  |  |  | 		(uint32_t)swapchain_size.y, // height
 | 
					
						
							|  |  |  | 		0, // faceCount
 | 
					
						
							|  |  |  | 		0, // arraySize
 | 
					
						
							|  |  |  | 		0, // mipCount
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	jobject surface; | 
					
						
							|  |  |  | 	composition_layer_extension->create_android_surface_swapchain(&info, &android_surface.swapchain, &surface); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-20 13:09:20 -06:00
										 |  |  | 	swapchain_state.dirty = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	if (surface) { | 
					
						
							| 
									
										
										
										
											2024-06-09 15:21:41 -05:00
										 |  |  | 		android_surface.surface.instantiate(JavaClassWrapper::get_singleton()->wrap("android.view.Surface"), surface); | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Ref<JavaObject> OpenXRViewportCompositionLayerProvider::get_android_surface() { | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	if (use_android_surface) { | 
					
						
							|  |  |  | 		if (android_surface.surface.is_null()) { | 
					
						
							|  |  |  | 			create_android_surface(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return android_surface.surface; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	return Ref<JavaObject>(); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-04 15:04:07 -05:00
										 |  |  | void OpenXRViewportCompositionLayerProvider::set_extension_property_values(const Dictionary &p_extension_property_values) { | 
					
						
							|  |  |  | 	extension_property_values = p_extension_property_values; | 
					
						
							|  |  |  | 	extension_property_values_changed = true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | void OpenXRViewportCompositionLayerProvider::on_pre_render() { | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	if (use_android_surface) { | 
					
						
							|  |  |  | 		if (android_surface.surface.is_null()) { | 
					
						
							|  |  |  | 			create_android_surface(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	RenderingServer *rs = RenderingServer::get_singleton(); | 
					
						
							|  |  |  | 	ERR_FAIL_NULL(rs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	if (subviewport.viewport.is_valid() && openxr_api && openxr_api->is_running()) { | 
					
						
							|  |  |  | 		RS::ViewportUpdateMode update_mode = rs->viewport_get_update_mode(subviewport.viewport); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		if (update_mode == RS::VIEWPORT_UPDATE_ONCE || update_mode == RS::VIEWPORT_UPDATE_ALWAYS) { | 
					
						
							|  |  |  | 			// Update our XR swapchain
 | 
					
						
							|  |  |  | 			if (update_and_acquire_swapchain(update_mode == RS::VIEWPORT_UPDATE_ONCE)) { | 
					
						
							|  |  |  | 				// Render to our XR swapchain image.
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 				RID rt = rs->viewport_get_render_target(subviewport.viewport); | 
					
						
							| 
									
										
										
										
											2024-12-10 13:40:47 -06:00
										 |  |  | 				RSG::texture_storage->render_target_set_override(rt, get_current_swapchain_texture(), RID(), RID(), RID()); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-01-20 13:09:20 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (swapchain_state.dirty) { | 
					
						
							|  |  |  | 		update_swapchain_state(); | 
					
						
							|  |  |  | 		swapchain_state.dirty = false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | XrCompositionLayerBaseHeader *OpenXRViewportCompositionLayerProvider::get_composition_layer() { | 
					
						
							|  |  |  | 	if (openxr_api == nullptr || composition_layer_extension == nullptr) { | 
					
						
							| 
									
										
										
										
											2024-05-07 10:05:42 +02:00
										 |  |  | 		// OpenXR not initialized or we're in the editor?
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		return nullptr; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!composition_layer_extension->is_available(composition_layer->type)) { | 
					
						
							|  |  |  | 		// Selected type is not supported, ignore our layer.
 | 
					
						
							|  |  |  | 		return nullptr; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	XrSwapchainSubImage subimage = { | 
					
						
							|  |  |  | 		0, // swapchain // NOLINT(modernize-use-nullptr) - 32-bit uses non-pointer uint64
 | 
					
						
							|  |  |  | 		{ { 0, 0 }, { 0, 0 } }, // imageRect
 | 
					
						
							|  |  |  | 		0, // imageArrayIndex
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	update_swapchain_sub_image(subimage); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (subimage.swapchain == XR_NULL_HANDLE) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		// Don't have a swapchain to display? Ignore our layer.
 | 
					
						
							|  |  |  | 		return nullptr; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Update the layer struct for the swapchain.
 | 
					
						
							|  |  |  | 	switch (composition_layer->type) { | 
					
						
							|  |  |  | 		case XR_TYPE_COMPOSITION_LAYER_QUAD: { | 
					
						
							|  |  |  | 			XrCompositionLayerQuad *quad_layer = (XrCompositionLayerQuad *)composition_layer; | 
					
						
							| 
									
										
										
										
											2024-05-07 16:25:57 -05:00
										 |  |  | 			quad_layer->space = openxr_api->get_play_space(); | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 			quad_layer->subImage = subimage; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case XR_TYPE_COMPOSITION_LAYER_CYLINDER_KHR: { | 
					
						
							|  |  |  | 			XrCompositionLayerCylinderKHR *cylinder_layer = (XrCompositionLayerCylinderKHR *)composition_layer; | 
					
						
							| 
									
										
										
										
											2024-05-07 16:25:57 -05:00
										 |  |  | 			cylinder_layer->space = openxr_api->get_play_space(); | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 			cylinder_layer->subImage = subimage; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case XR_TYPE_COMPOSITION_LAYER_EQUIRECT2_KHR: { | 
					
						
							|  |  |  | 			XrCompositionLayerEquirect2KHR *equirect_layer = (XrCompositionLayerEquirect2KHR *)composition_layer; | 
					
						
							| 
									
										
										
										
											2024-05-07 16:25:57 -05:00
										 |  |  | 			equirect_layer->space = openxr_api->get_play_space(); | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 			equirect_layer->subImage = subimage; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		default: { | 
					
						
							|  |  |  | 			return nullptr; | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-04 15:04:07 -05:00
										 |  |  | 	if (extension_property_values_changed) { | 
					
						
							|  |  |  | 		extension_property_values_changed = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		void *next_pointer = nullptr; | 
					
						
							|  |  |  | 		for (OpenXRExtensionWrapper *extension : OpenXRAPI::get_registered_extension_wrappers()) { | 
					
						
							|  |  |  | 			void *np = extension->set_viewport_composition_layer_and_get_next_pointer(composition_layer, extension_property_values, next_pointer); | 
					
						
							|  |  |  | 			if (np) { | 
					
						
							|  |  |  | 				next_pointer = np; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		composition_layer->next = next_pointer; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	return composition_layer; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-20 13:09:20 -06:00
										 |  |  | void OpenXRViewportCompositionLayerProvider::update_swapchain_state() { | 
					
						
							|  |  |  | 	OpenXRFBUpdateSwapchainExtension *fb_update_swapchain_ext = OpenXRFBUpdateSwapchainExtension::get_singleton(); | 
					
						
							|  |  |  | 	if (!fb_update_swapchain_ext) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	if (use_android_surface) { | 
					
						
							|  |  |  | 		if (android_surface.swapchain == XR_NULL_HANDLE) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		fb_update_swapchain_ext->update_swapchain_state(android_surface.swapchain, &swapchain_state); | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (subviewport.swapchain_info.get_swapchain() == XR_NULL_HANDLE) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		fb_update_swapchain_ext->update_swapchain_state(subviewport.swapchain_info.get_swapchain(), &swapchain_state); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRViewportCompositionLayerProvider::SwapchainState *OpenXRViewportCompositionLayerProvider::get_swapchain_state() { | 
					
						
							|  |  |  | 	return &swapchain_state; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | void OpenXRViewportCompositionLayerProvider::update_swapchain_sub_image(XrSwapchainSubImage &r_subimage) { | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	if (use_android_surface) { | 
					
						
							|  |  |  | 		r_subimage.swapchain = android_surface.swapchain; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		XrSwapchain swapchain = subviewport.swapchain_info.get_swapchain(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (swapchain && subviewport.swapchain_info.is_image_acquired()) { | 
					
						
							|  |  |  | 			subviewport.swapchain_info.release(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		r_subimage.swapchain = swapchain; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	r_subimage.imageRect.extent.width = swapchain_size.width; | 
					
						
							|  |  |  | 	r_subimage.imageRect.extent.height = swapchain_size.height; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | bool OpenXRViewportCompositionLayerProvider::update_and_acquire_swapchain(bool p_static_image) { | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	ERR_FAIL_COND_V(use_android_surface, false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	if (openxr_api == nullptr || composition_layer_extension == nullptr) { | 
					
						
							| 
									
										
										
										
											2024-05-07 10:05:42 +02:00
										 |  |  | 		// OpenXR not initialized or we're in the editor?
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	if (!composition_layer_extension->is_available(get_openxr_type())) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		// Selected type is not supported?
 | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// See if our current swapchain is outdated.
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	if (subviewport.swapchain_info.get_swapchain() != XR_NULL_HANDLE) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		// If this swap chain, or the previous one, were static, then we can't reuse it.
 | 
					
						
							| 
									
										
										
										
											2025-07-15 22:32:51 +02:00
										 |  |  | 		if (swapchain_size == subviewport.viewport_size && !p_static_image && !subviewport.static_image && protected_content == subviewport.swapchain_protected_content) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 			// We're all good! Just acquire it.
 | 
					
						
							| 
									
										
										
										
											2024-01-22 20:32:41 +11:00
										 |  |  | 			// We can ignore should_render here, return will be false.
 | 
					
						
							| 
									
										
										
										
											2024-03-21 18:58:24 +11:00
										 |  |  | 			bool should_render = true; | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 			return subviewport.swapchain_info.acquire(should_render); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 		subviewport.swapchain_info.queue_free(); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Create our new swap chain
 | 
					
						
							|  |  |  | 	int64_t swapchain_format = openxr_api->get_color_swapchain_format(); | 
					
						
							| 
									
										
										
										
											2024-05-14 10:43:44 -05:00
										 |  |  | 	const uint32_t sample_count = 1; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	const uint32_t array_size = 1; | 
					
						
							|  |  |  | 	XrSwapchainCreateFlags create_flags = 0; | 
					
						
							|  |  |  | 	if (p_static_image) { | 
					
						
							|  |  |  | 		create_flags |= XR_SWAPCHAIN_CREATE_STATIC_IMAGE_BIT; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-07-15 22:32:51 +02:00
										 |  |  | 	if (protected_content) { | 
					
						
							|  |  |  | 		create_flags |= XR_SWAPCHAIN_CREATE_PROTECTED_CONTENT_BIT; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	if (!subviewport.swapchain_info.create(create_flags, XR_SWAPCHAIN_USAGE_SAMPLED_BIT | XR_SWAPCHAIN_USAGE_COLOR_ATTACHMENT_BIT | XR_SWAPCHAIN_USAGE_MUTABLE_FORMAT_BIT, swapchain_format, subviewport.viewport_size.width, subviewport.viewport_size.height, sample_count, array_size)) { | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 		swapchain_size = Size2i(); | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-20 13:09:20 -06:00
										 |  |  | 	swapchain_state.dirty = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-22 20:32:41 +11:00
										 |  |  | 	// Acquire our image so we can start rendering into it,
 | 
					
						
							|  |  |  | 	// we can ignore should_render here, ret will be false.
 | 
					
						
							| 
									
										
										
										
											2024-03-21 18:58:24 +11:00
										 |  |  | 	bool should_render = true; | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	bool ret = subviewport.swapchain_info.acquire(should_render); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	swapchain_size = subviewport.viewport_size; | 
					
						
							|  |  |  | 	subviewport.static_image = p_static_image; | 
					
						
							| 
									
										
										
										
											2025-07-15 22:32:51 +02:00
										 |  |  | 	subviewport.swapchain_protected_content = protected_content; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OpenXRViewportCompositionLayerProvider::free_swapchain() { | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							|  |  |  | 	if (use_android_surface) { | 
					
						
							|  |  |  | 		if (android_surface.swapchain != XR_NULL_HANDLE) { | 
					
						
							|  |  |  | 			composition_layer_extension->free_android_surface_swapchain(android_surface.swapchain); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			android_surface.swapchain = XR_NULL_HANDLE; | 
					
						
							|  |  |  | 			android_surface.surface.unref(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (subviewport.swapchain_info.get_swapchain() != XR_NULL_HANDLE) { | 
					
						
							|  |  |  | 			subviewport.swapchain_info.queue_free(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		subviewport.static_image = false; | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	swapchain_size = Size2i(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RID OpenXRViewportCompositionLayerProvider::get_current_swapchain_texture() { | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	ERR_FAIL_COND_V(use_android_surface, RID()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | 	if (openxr_api == nullptr) { | 
					
						
							|  |  |  | 		return RID(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 17:02:28 -05:00
										 |  |  | 	return subviewport.swapchain_info.get_image(); | 
					
						
							| 
									
										
										
										
											2024-03-25 08:07:28 -05:00
										 |  |  | } |