The open source OpenXR runtime
0
fork

Configure Feed

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

st/oxr: Enable XR_EXT_local_floor

+18
+4
CMakeLists.txt
··· 378 378 if(NOT DEFINED XRT_FEATURE_OPENXR_LAYER_EQUIRECT1) 379 379 set(XRT_FEATURE_OPENXR_LAYER_EQUIRECT1 OFF) 380 380 endif() 381 + # Defaults for OpenXR spaces 382 + if(NOT DEFINED XRT_FEATURE_OPENXR_SPACE_LOCAL_FLOOR) 383 + set(XRT_FEATURE_OPENXR_SPACE_LOCAL_FLOOR ON) 384 + endif() 381 385 382 386 # You can set this from a superproject to add a driver 383 387 # All drivers must be listed in here to be included in the generated header!
+1
scripts/generate_oxr_ext_support.py
··· 58 58 ['XR_EXT_hand_interaction'], 59 59 ['XR_EXT_hand_tracking'], 60 60 ['XR_EXT_hp_mixed_reality_controller'], 61 + ['XR_EXT_local_floor', 'XRT_FEATURE_OPENXR_SPACE_LOCAL_FLOOR'], 61 62 ['XR_EXT_palm_pose', 'ALWAYS_DISABLED'], 62 63 ['XR_EXT_samsung_odyssey_controller'], 63 64 ['XR_FB_display_refresh_rate'],
+1
src/xrt/include/xrt/xrt_config_build.h.cmake_in
··· 34 34 #cmakedefine XRT_FEATURE_OPENXR_LAYER_DEPTH 35 35 #cmakedefine XRT_FEATURE_OPENXR_LAYER_EQUIRECT1 36 36 #cmakedefine XRT_FEATURE_OPENXR_LAYER_EQUIRECT2 37 + #cmakedefine XRT_FEATURE_OPENXR_SPACE_LOCAL_FLOOR 37 38 #cmakedefine XRT_FEATURE_RENDERDOC 38 39 #cmakedefine XRT_FEATURE_SERVICE 39 40 #cmakedefine XRT_FEATURE_SERVICE_SYSTEMD
+12
src/xrt/state_trackers/oxr/oxr_extension_support.h
··· 303 303 304 304 305 305 /* 306 + * XR_EXT_local_floor 307 + */ 308 + #if defined(XR_EXT_local_floor) && defined(XRT_FEATURE_OPENXR_SPACE_LOCAL_FLOOR) 309 + #define OXR_HAVE_EXT_local_floor 310 + #define OXR_EXTENSION_SUPPORT_EXT_local_floor(_) _(EXT_local_floor, EXT_LOCAL_FLOOR) 311 + #else 312 + #define OXR_EXTENSION_SUPPORT_EXT_local_floor(_) 313 + #endif 314 + 315 + 316 + /* 306 317 * XR_EXT_palm_pose 307 318 */ 308 319 #if defined(XR_EXT_palm_pose) && defined(ALWAYS_DISABLED) ··· 520 531 OXR_EXTENSION_SUPPORT_EXT_hand_interaction(_) \ 521 532 OXR_EXTENSION_SUPPORT_EXT_hand_tracking(_) \ 522 533 OXR_EXTENSION_SUPPORT_EXT_hp_mixed_reality_controller(_) \ 534 + OXR_EXTENSION_SUPPORT_EXT_local_floor(_) \ 523 535 OXR_EXTENSION_SUPPORT_EXT_palm_pose(_) \ 524 536 OXR_EXTENSION_SUPPORT_EXT_samsung_odyssey_controller(_) \ 525 537 OXR_EXTENSION_SUPPORT_FB_display_refresh_rate(_) \