The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

st/oxr: Do not enable XR_EXT_debug_utils as it's not implemented yet

authored by

Jakob Bornecrantz and committed by
Jakob Bornecrantz
1c29b22c 830706e0

+3 -4
+1 -1
scripts/generate_oxr_ext_support.py
··· 24 24 ['XR_KHR_swapchain_usage_input_attachment_bit'], 25 25 ['XR_KHR_vulkan_enable', 'XR_USE_GRAPHICS_API_VULKAN'], 26 26 ['XR_KHR_vulkan_enable2', 'XR_USE_GRAPHICS_API_VULKAN'], 27 - ['XR_EXT_debug_utils'], 27 + ['XR_EXT_debug_utils', 'XRT_FEATURE_OPENXR_DEBUG_UTILS'], 28 28 ['XR_EXT_hand_tracking'], 29 29 ['XR_FB_display_refresh_rate'], 30 30 ['XR_MND_headless'],
+1
src/xrt/include/xrt/xrt_config_build.h.cmake_in
··· 15 15 #cmakedefine XRT_FEATURE_COMPOSITOR_MAIN 16 16 #cmakedefine XRT_FEATURE_IPC 17 17 #cmakedefine XRT_FEATURE_OPENXR 18 + #cmakedefine XRT_FEATURE_OPENXR_DEBUG_UTILS 18 19 #cmakedefine XRT_FEATURE_OPENXR_LAYER_CUBE 19 20 #cmakedefine XRT_FEATURE_OPENXR_LAYER_CYLINDER 20 21 #cmakedefine XRT_FEATURE_OPENXR_LAYER_DEPTH
-2
src/xrt/state_trackers/oxr/oxr_api_negotiate.c
··· 233 233 ENTRY_IF_EXT(xrRequestDisplayRefreshRateFB, FB_display_refresh_rate); 234 234 #endif 235 235 236 - #if 0 237 236 #ifdef OXR_HAVE_EXT_debug_utils 238 237 ENTRY_IF_EXT(xrSetDebugUtilsObjectNameEXT, EXT_debug_utils); 239 238 ENTRY_IF_EXT(xrCreateDebugUtilsMessengerEXT, EXT_debug_utils); ··· 243 242 ENTRY_IF_EXT(xrSessionEndDebugUtilsLabelRegionEXT, EXT_debug_utils); 244 243 ENTRY_IF_EXT(xrSessionInsertDebugUtilsLabelEXT, EXT_debug_utils); 245 244 #endif // OXR_HAVE_EXT_debug_utils 246 - #endif 247 245 248 246 #ifdef OXR_HAVE_KHR_opengl_enable 249 247 ENTRY_IF_EXT(xrGetOpenGLGraphicsRequirementsKHR, KHR_opengl_enable);
+1 -1
src/xrt/state_trackers/oxr/oxr_extension_support.h
··· 181 181 /* 182 182 * XR_EXT_debug_utils 183 183 */ 184 - #if defined(XR_EXT_debug_utils) 184 + #if defined(XR_EXT_debug_utils) && defined(XRT_FEATURE_OPENXR_DEBUG_UTILS) 185 185 #define OXR_HAVE_EXT_debug_utils 186 186 #define OXR_EXTENSION_SUPPORT_EXT_debug_utils(_) _(EXT_debug_utils, EXT_DEBUG_UTILS) 187 187 #else