26#include "xrt/xrt_config_have.h"
35#include "oxr_extension_support.h"
53#if defined(XRT_HAVE_D3D11) || defined(XRT_HAVE_D3D12)
58#ifdef XRT_FEATURE_RENDERDOC
59#include "renderdoc_app.h"
91#define XRT_CAST_PTR_TO_OXR_HANDLE(HANDLE_TYPE, PTR) ((HANDLE_TYPE)(uint64_t)(uintptr_t)(PTR))
102#define XRT_CAST_OXR_HANDLE_TO_PTR(PTR_TYPE, HANDLE) ((PTR_TYPE)(uintptr_t)(uint64_t)(HANDLE))
115#define OXR_MAX_BINDINGS_PER_ACTION 32
127#define OXR_XRT_POSE_TO_XRPOSEF(FROM, TO) \
130 struct xrt_pose xrt; \
132 } safe_copy = {FROM}; \
133 TO = safe_copy.oxr; \
139#define OXR_XRT_FOV_TO_XRFOVF(FROM, TO) \
142 struct xrt_fov xrt; \
144 } safe_copy = {FROM}; \
145 TO = safe_copy.oxr; \
149static inline const char *
150xr_action_type_to_str(XrActionType type)
154 #define PRINT(name, value) \
155 case name: return #name;
156 XR_LIST_ENUM_XrActionType(PRINT)
158 default:
return "XR_ACTION_TYPE_UNKNOWN";
176static inline XrInstance
194 const XrInstanceCreateInfo *createInfo,
195 XrVersion major_minor,
211oxr_instance_get_properties(
struct oxr_logger *log,
213 XrInstanceProperties *instanceProperties);
221oxr_instance_convert_time_to_timespec(
struct oxr_logger *log,
224 struct timespec *timespecTime);
230oxr_instance_convert_timespec_to_time(
struct oxr_logger *log,
232 const struct timespec *timespecTime,
236#ifdef XR_USE_PLATFORM_WIN32
242oxr_instance_convert_time_to_win32perfcounter(
struct oxr_logger *log,
245 LARGE_INTEGER *win32perfcounterTime);
251oxr_instance_convert_win32perfcounter_to_time(
struct oxr_logger *log,
253 const LARGE_INTEGER *win32perfcounterTime,
267static inline XrActionSet
278static inline XrHandTrackerEXT
284#ifdef OXR_HAVE_EXT_plane_detection
290static inline XrPlaneDetectorEXT
291oxr_plane_detector_to_openxr(
struct oxr_plane_detector_ext *plane_detector)
302static inline XrAction
308#ifdef OXR_HAVE_HTC_facial_tracking
314static inline XrFacialTrackerHTC
315oxr_facial_tracker_htc_to_openxr(
struct oxr_facial_tracker_htc *face_tracker_htc)
321#ifdef OXR_HAVE_FB_body_tracking
327static inline XrBodyTrackerFB
328oxr_body_tracker_fb_to_openxr(
struct oxr_body_tracker_fb *body_tracker_fb)
334#ifdef OXR_HAVE_BD_body_tracking
340static inline XrBodyTrackerBD
341oxr_body_tracker_bd_to_openxr(
struct oxr_body_tracker_bd *body_tracker_bd)
347#ifdef OXR_HAVE_FB_face_tracking2
353static inline XrFaceTracker2FB
354oxr_face_tracker2_fb_to_openxr(
struct oxr_face_tracker2_fb *face_tracker2_fb)
360#ifdef OXR_HAVE_ANDROID_face_tracking
366static inline XrFaceTrackerANDROID
367oxr_face_tracker_android_to_openxr(
struct oxr_face_tracker_android *face_tracker_android)
385static inline XrSession
394 const XrSessionCreateInfo *createInfo,
398oxr_session_enumerate_formats(
struct oxr_logger *log,
400 uint32_t formatCapacityInput,
401 uint32_t *formatCountOutput,
411oxr_session_begin(
struct oxr_logger *log,
struct oxr_session *sess,
const XrSessionBeginInfo *beginInfo);
419XRT_CHECK_RESULT XrResult
423oxr_session_locate_views(
struct oxr_logger *log,
425 const XrViewLocateInfo *viewLocateInfo,
426 XrViewState *viewState,
427 uint32_t viewCapacityInput,
428 uint32_t *viewCountOutput,
451#ifdef OXR_HAVE_KHR_android_thread_settings
453oxr_session_android_thread_settings(
struct oxr_logger *log,
455 XrAndroidThreadTypeKHR threadType,
459#ifdef OXR_HAVE_KHR_visibility_mask
461oxr_session_get_visibility_mask(
struct oxr_logger *log,
463 XrVisibilityMaskTypeKHR visibilityMaskType,
465 XrVisibilityMaskKHR *visibilityMask);
468oxr_event_push_XrEventDataVisibilityMaskChangedKHR(
struct oxr_logger *log,
470 XrViewConfigurationType viewConfigurationType,
474#ifdef OXR_HAVE_EXT_performance_settings
476oxr_session_set_perf_level(
struct oxr_logger *log,
478 XrPerfSettingsDomainEXT domain,
479 XrPerfSettingsLevelEXT level);
501 const XrActionSpaceCreateInfo *createInfo,
505oxr_space_get_reference_bounds_rect(
struct oxr_logger *log,
507 XrReferenceSpaceType referenceSpaceType,
508 XrExtent2Df *bounds);
511oxr_space_reference_create(
struct oxr_logger *log,
513 const XrReferenceSpaceCreateInfo *createInfo,
538 XrSpaceLocations *locations);
552XRT_CHECK_RESULT XrResult
569XRT_CHECK_RESULT XrResult
582static inline XrSwapchain
598static inline XrDebugUtilsMessengerEXT
607 const XrDebugUtilsMessengerCreateInfoEXT *,
622 uint32_t system_count,
623 XrFormFactor form_factor,
643oxr_system_get_properties(
struct oxr_logger *log,
struct oxr_system *sys, XrSystemProperties *properties);
646oxr_system_enumerate_view_confs(
struct oxr_logger *log,
648 uint32_t viewConfigurationTypeCapacityInput,
649 uint32_t *viewConfigurationTypeCountOutput,
650 XrViewConfigurationType *viewConfigurationTypes);
653oxr_system_enumerate_blend_modes(
struct oxr_logger *log,
655 XrViewConfigurationType viewConfigurationType,
656 uint32_t environmentBlendModeCapacityInput,
657 uint32_t *environmentBlendModeCountOutput,
658 XrEnvironmentBlendMode *environmentBlendModes);
661oxr_system_get_view_conf_properties(
struct oxr_logger *log,
663 XrViewConfigurationType viewConfigurationType,
664 XrViewConfigurationProperties *configurationProperties);
667oxr_system_enumerate_view_conf_views(
struct oxr_logger *log,
669 XrViewConfigurationType viewConfigurationType,
670 uint32_t viewCapacityInput,
671 uint32_t *viewCountOutput,
672 XrViewConfigurationView *views);
684oxr_system_get_face_tracking_android_support(
struct oxr_logger *log,
struct oxr_instance *inst,
bool *supported);
687oxr_system_get_face_tracking_htc_support(
struct oxr_logger *log,
693oxr_system_get_face_tracking2_fb_support(
struct oxr_logger *log,
695 bool *supports_audio,
696 bool *supports_visual);
717oxr_event_push_XrEventDataSessionStateChanged(
struct oxr_logger *log,
719 XrSessionState state,
723oxr_event_push_XrEventDataInteractionProfileChanged(
struct oxr_logger *log,
struct oxr_session *sess);
726oxr_event_push_XrEventDataReferenceSpaceChangePending(
struct oxr_logger *log,
728 XrReferenceSpaceType referenceSpaceType,
731 const XrPosef *poseInPreviousSpace);
733#ifdef OXR_HAVE_FB_display_refresh_rate
735oxr_event_push_XrEventDataDisplayRefreshRateChangedFB(
struct oxr_logger *log,
737 float fromDisplayRefreshRate,
738 float toDisplayRefreshRate);
741#ifdef OXR_HAVE_EXTX_overlay
743oxr_event_push_XrEventDataMainSessionVisibilityChangedEXTX(
struct oxr_logger *log,
748#ifdef OXR_HAVE_EXT_performance_settings
750oxr_event_push_XrEventDataPerfSettingsEXTX(
struct oxr_logger *log,
753 enum xrt_perf_sub_domain subDomain,
777oxr_xdev_destroy(
struct xrt_device **xdev_ptr);
791#ifdef OXR_HAVE_MNDX_xdev_space
792static inline XrXDevListMNDX
793oxr_xdev_list_to_openxr(
struct oxr_xdev_list *sc)
801 const XrCreateXDevListInfoMNDX *createInfo,
802 struct oxr_xdev_list **out_xdl);
805oxr_xdev_list_get_properties(
struct oxr_logger *log,
806 struct oxr_xdev_list *xdl,
808 XrXDevPropertiesMNDX *properties);
811oxr_xdev_list_space_create(
struct oxr_logger *log,
812 struct oxr_xdev_list *xdl,
813 const XrCreateXDevSpaceInfoMNDX *createInfo,
819 struct oxr_xdev_list *xdl,
832#ifdef XR_USE_GRAPHICS_API_OPENGL
833#ifdef XR_USE_PLATFORM_XLIB
836oxr_session_populate_gl_xlib(
struct oxr_logger *log,
838 XrGraphicsBindingOpenGLXlibKHR
const *next,
842#ifdef XR_USE_PLATFORM_WIN32
844oxr_session_populate_gl_win32(
struct oxr_logger *log,
846 XrGraphicsBindingOpenGLWin32KHR
const *next,
851#if defined(XR_USE_GRAPHICS_API_OPENGL) || defined(XR_USE_GRAPHICS_API_OPENGL_ES)
855 const XrSwapchainCreateInfo * ,
860#if defined(XR_USE_GRAPHICS_API_OPENGL_ES)
861#if defined(XR_USE_PLATFORM_ANDROID)
863oxr_session_populate_gles_android(
struct oxr_logger *log,
865 XrGraphicsBindingOpenGLESAndroidKHR
const *next,
877#ifdef XR_USE_GRAPHICS_API_VULKAN
880oxr_vk_get_instance_exts(
struct oxr_logger *log,
882 uint32_t namesCapacityInput,
883 uint32_t *namesCountOutput,
889 uint32_t namesCapacityInput,
890 uint32_t *namesCountOutput,
894oxr_vk_get_requirements(
struct oxr_logger *log,
896 XrGraphicsRequirementsVulkanKHR *graphicsRequirements);
901 const XrVulkanInstanceCreateInfoKHR *createInfo,
902 VkInstance *vulkanInstance,
903 VkResult *vulkanResult);
908 const XrVulkanDeviceCreateInfoKHR *createInfo,
909 VkDevice *vulkanDevice,
910 VkResult *vulkanResult);
913oxr_vk_get_physical_device(
struct oxr_logger *log,
916 VkInstance vkInstance,
917 PFN_vkGetInstanceProcAddr getProc,
918 VkPhysicalDevice *vkPhysicalDevice);
921oxr_session_populate_vk(
struct oxr_logger *log,
923 XrGraphicsBindingVulkanKHR
const *next,
929 const XrSwapchainCreateInfo * ,
941#ifdef XR_USE_PLATFORM_EGL
944oxr_session_populate_egl(
struct oxr_logger *log,
946 XrGraphicsBindingEGLMNDX
const *next,
952 PFN_xrEglGetProcAddressMNDX getProcAddress,
953 EGLDeviceEXT *out_egl_device);
963#if defined(XRT_HAVE_D3D11) || defined(XRT_HAVE_D3D12) || defined(XRT_DOXYGEN)
969 D3D_FEATURE_LEVEL *min_feature_level);
982#ifdef XR_USE_GRAPHICS_API_D3D11
985oxr_d3d11_get_requirements(
struct oxr_logger *log,
987 XrGraphicsRequirementsD3D11KHR *graphicsRequirements);
999oxr_session_populate_d3d11(
struct oxr_logger *log,
1001 XrGraphicsBindingD3D11KHR
const *next,
1005oxr_swapchain_d3d11_create(
struct oxr_logger *,
1007 const XrSwapchainCreateInfo *,
1018#ifdef XR_USE_GRAPHICS_API_D3D12
1021oxr_d3d12_get_requirements(
struct oxr_logger *log,
1023 XrGraphicsRequirementsD3D12KHR *graphicsRequirements);
1035oxr_session_populate_d3d12(
struct oxr_logger *log,
1037 XrGraphicsBindingD3D12KHR
const *next,
1041oxr_swapchain_d3d12_create(
struct oxr_logger *,
1043 const XrSwapchainCreateInfo *,
1062 XrViewConfigurationType view_config_type;
1064 uint32_t view_count;
1065 XrViewConfigurationView views[XRT_MAX_COMPOSITOR_VIEW_CONFIGS_VIEW_COUNT];
1067 uint32_t blend_mode_count;
1068 XrEnvironmentBlendMode blend_modes[3];
1098 XrSystemId systemId;
1103 uint32_t view_config_count;
1106 XrReferenceSpaceType reference_spaces[5];
1107 uint32_t reference_space_count;
1111#ifdef OXR_HAVE_MNDX_xdev_space
1112 bool supports_xdev_space;
1115#ifdef XR_USE_GRAPHICS_API_VULKAN
1131 bool external_fence_fd_enabled;
1132 bool external_semaphore_fd_enabled;
1133 bool timeline_semaphore_enabled;
1134 bool debug_utils_enabled;
1135 bool image_format_list_enabled;
1140#if defined(XR_USE_GRAPHICS_API_D3D11) || defined(XR_USE_GRAPHICS_API_D3D12)
1141 LUID suggested_d3d_luid;
1142 bool suggested_d3d_luid_valid;
1150#define MAKE_EXT_STATUS(mixed_case, all_caps) bool mixed_case;
1158 OXR_EXTENSION_SUPPORT_GENERATE(MAKE_EXT_STATUS)
1160#undef MAKE_EXT_STATUS
1162#define XRT_MAX_DEBUG_MESSENGERS 256
1177 struct u_debug_gui *debug_ui;
1294 bool lifecycle_verbose;
1297 bool debug_bindings;
1299#ifdef XRT_FEATURE_RENDERDOC
1300 RENDERDOC_API_1_4_1 *rdoc_api;
1303#ifdef XRT_OS_ANDROID
1344 XrSessionState state;
1362 bool compositor_visible;
1363 bool compositor_focused;
1367 int active_wait_frames;
1368 struct os_mutex active_wait_frames_lock;
1414 const XrSwapchainCreateInfo *,
1429static inline XrResult
1432 switch (session->state) {
1433 case XR_SESSION_STATE_LOSS_PENDING:
return XR_SESSION_LOSS_PENDING;
1434 default:
return XR_SUCCESS;
1444static inline XrResult
1447 switch (session->state) {
1448 case XR_SESSION_STATE_LOSS_PENDING:
return XR_SESSION_LOSS_PENDING;
1449 case XR_SESSION_STATE_FOCUSED:
return XR_SUCCESS;
1450 default:
return XR_SESSION_NOT_FOCUSED;
1454#ifdef OXR_HAVE_FB_display_refresh_rate
1470 uint32_t path_count;
1489 size_t binding_count;
1503 uint32_t path_count;
1510 uint32_t act_key_count;
1624 size_t transform_count;
1663 int64_t stop_output_time;
1664 size_t output_count;
1701#define OXR_CACHE_MEMBER(X) struct oxr_action_cache X;
1703#undef OXR_CACHE_MEMBER
1714 switch (space_type) {
1715 case OXR_SPACE_TYPE_REFERENCE_VIEW:
1716 case OXR_SPACE_TYPE_REFERENCE_LOCAL:
1717 case OXR_SPACE_TYPE_REFERENCE_LOCAL_FLOOR:
1718 case OXR_SPACE_TYPE_REFERENCE_STAGE:
1719 case OXR_SPACE_TYPE_REFERENCE_UNBOUNDED_MSFT:
1720 case OXR_SPACE_TYPE_REFERENCE_COMBINED_EYE_VARJO:
1721 case OXR_SPACE_TYPE_REFERENCE_LOCALIZATION_MAP_ML:
1722 case OXR_SPACE_TYPE_REFERENCE_UNBOUNDED_ANDROID:
1726 case OXR_SPACE_TYPE_ACTION:
1727 case OXR_SPACE_TYPE_XDEV_POSE:
1772 bool feature_eye_tracking;
1838 XrResult (*enumerate_images)(
struct oxr_logger *,
1841 XrSwapchainImageBaseHeader *);
1843 XrResult (*acquire_image)(
struct oxr_logger *,
1845 const XrSwapchainImageAcquireInfo *,
1869 char name[XR_MAX_ACTION_SET_NAME_SIZE];
1950 char name[XR_MAX_ACTION_NAME_SIZE];
2029#ifdef OXR_HAVE_FB_passthrough
2031struct oxr_passthrough
2037 XrPassthroughFlagsFB
flags;
2042struct oxr_passthrough_layer
2048 XrPassthroughFB passthrough;
2050 XrPassthroughFlagsFB
flags;
2052 XrPassthroughLayerPurposeFB purpose;
2056 XrPassthroughStyleFB style;
2057 XrPassthroughColorMapMonoToRgbaFB monoToRgba;
2058 XrPassthroughColorMapMonoToMonoFB monoToMono;
2059 XrPassthroughBrightnessContrastSaturationFB brightnessContrastSaturation;
2063oxr_passthrough_create(
struct oxr_logger *log,
2065 const XrPassthroughCreateInfoFB *createInfo,
2066 struct oxr_passthrough **out_passthrough);
2069oxr_passthrough_layer_create(
struct oxr_logger *log,
2071 const XrPassthroughLayerCreateInfoFB *createInfo,
2072 struct oxr_passthrough_layer **out_layer);
2074static inline XrPassthroughFB
2075oxr_passthrough_to_openxr(
struct oxr_passthrough *passthrough)
2080static inline XrPassthroughLayerFB
2081oxr_passthrough_layer_to_openxr(
struct oxr_passthrough_layer *passthroughLayer)
2087oxr_event_push_XrEventDataPassthroughStateChangedFB(
struct oxr_logger *log,
2089 XrPassthroughStateChangedFlagsFB
flags);
2093#ifdef OXR_HAVE_HTC_facial_tracking
2103struct oxr_facial_tracker_htc
2115 enum xrt_facial_tracking_type_htc facial_tracking_type;
2118 bool feature_incremented;
2122oxr_facial_tracker_htc_create(
struct oxr_logger *log,
2124 const XrFacialTrackerCreateInfoHTC *createInfo,
2125 struct oxr_facial_tracker_htc **out_face_tracker_htc);
2128oxr_get_facial_expressions_htc(
struct oxr_logger *log,
2129 struct oxr_facial_tracker_htc *facial_tracker_htc,
2130 XrFacialExpressionsHTC *facialExpressions);
2133#ifdef OXR_HAVE_FB_body_tracking
2142struct oxr_body_tracker_fb
2154 enum xrt_body_joint_set_type_fb joint_set_type;
2158oxr_create_body_tracker_fb(
struct oxr_logger *log,
2160 const XrBodyTrackerCreateInfoFB *createInfo,
2161 struct oxr_body_tracker_fb **out_body_tracker_fb);
2164oxr_get_body_skeleton_fb(
struct oxr_logger *log,
2165 struct oxr_body_tracker_fb *body_tracker_fb,
2166 XrBodySkeletonFB *skeleton);
2169oxr_locate_body_joints_fb(
struct oxr_logger *log,
2170 struct oxr_body_tracker_fb *body_tracker_fb,
2172 const XrBodyJointsLocateInfoFB *locateInfo,
2173 XrBodyJointLocationsFB *locations);
2176#ifdef OXR_HAVE_BD_body_tracking
2185struct oxr_body_tracker_bd
2197 enum xrt_body_joint_set_type_bd joint_set_type;
2201oxr_create_body_tracker_bd(
struct oxr_logger *log,
2203 const XrBodyTrackerCreateInfoBD *createInfo,
2204 struct oxr_body_tracker_bd **out_body_tracker_bd);
2207oxr_locate_body_joints_bd(
struct oxr_logger *log,
2208 struct oxr_body_tracker_bd *body_tracker_bd,
2210 const XrBodyJointsLocateInfoBD *locateInfo,
2211 XrBodyJointLocationsBD *locations);
2217#ifdef OXR_HAVE_FB_face_tracking2
2226struct oxr_face_tracker2_fb
2238 bool visual_enabled;
2241 bool feature_incremented;
2245oxr_face_tracker2_fb_create(
struct oxr_logger *log,
2247 const XrFaceTrackerCreateInfo2FB *createInfo,
2248 struct oxr_face_tracker2_fb **out_face_tracker2_fb);
2251oxr_get_face_expression_weights2_fb(
struct oxr_logger *log,
2252 struct oxr_face_tracker2_fb *face_tracker2_fb,
2253 const XrFaceExpressionInfo2FB *expression_info,
2254 XrFaceExpressionWeights2FB *expression_weights);
2257#ifdef OXR_HAVE_MNDX_xdev_space
2275 uint64_t generation_number;
2282 uint32_t device_count;
2286#ifdef OXR_HAVE_EXT_plane_detection
2296struct oxr_plane_detector_ext
2308 XrPlaneDetectionStateEXT state;
2321 XrPlaneDetectorLocationEXT *xr_locations;
2324 uint64_t detection_id;
2328#ifdef OXR_HAVE_EXT_future
2337struct oxr_future_ext
2357static inline XrFutureEXT
2358oxr_future_ext_to_openxr(
struct oxr_future_ext *future_ext)
2368 struct oxr_future_ext **out_oxr_future_ext);
2371oxr_future_invalidate(
struct oxr_logger *log,
struct oxr_future_ext *oxr_future);
2374oxr_future_ext_poll(
struct oxr_logger *log,
const struct oxr_future_ext *oxr_future, XrFuturePollResultEXT *pollResult);
2377oxr_future_ext_cancel(
struct oxr_logger *log,
struct oxr_future_ext *oxr_future);
2380oxr_future_ext_complete(
struct oxr_logger *log,
2381 struct oxr_future_ext *oxr_future,
2386#ifdef OXR_HAVE_EXT_user_presence
2388oxr_event_push_XrEventDataUserPresenceChangedEXT(
struct oxr_logger *log,
struct oxr_session *sess,
bool isUserPresent);
2391#ifdef OXR_HAVE_ANDROID_face_tracking
2401struct oxr_face_tracker_android
2413 bool feature_incremented;
2417oxr_face_tracker_android_create(
struct oxr_logger *log,
2419 const XrFaceTrackerCreateInfoANDROID *createInfo,
2420 XrFaceTrackerANDROID *faceTracker);
2424 struct oxr_face_tracker_android *facial_tracker_android,
2425 const XrFaceStateGetInfoANDROID *getInfo,
2426 XrFaceStateANDROID *faceStateOutput);
2429oxr_get_face_calibration_state_android(
struct oxr_logger *log,
2430 struct oxr_face_tracker_android *facial_tracker_android,
2431 XrBool32 *faceIsCalibratedOutput);
XrResult oxr_poll_event(struct oxr_logger *log, struct oxr_instance *inst, XrEventDataBuffer *eventData)
Will return one event if available, also drain the sessions event queues.
Definition oxr_event.c:428
XrResult oxr_spaces_locate(struct oxr_logger *log, struct oxr_space **spcs, uint32_t spc_count, struct oxr_space *baseSpc, XrTime time, XrSpaceLocations *locations)
Definition oxr_space.c:307
static XrSwapchain oxr_swapchain_to_openxr(struct oxr_swapchain *sc)
To go back to a OpenXR object.
Definition oxr_objects.h:583
oxr_image_state
Tracks the state of a image that belongs to a oxr_swapchain.
Definition oxr_defines.h:83
XrResult oxr_d3d_check_luid(struct oxr_logger *log, struct oxr_system *sys, LUID *adapter_luid)
Verify the provided LUID matches the expected one in sys.
Definition oxr_d3d.cpp:80
XrResult oxr_event_remove_session_events(struct oxr_logger *log, struct oxr_session *sess)
This clears all pending events refers to the given session.
Definition oxr_event.c:386
static XrResult oxr_session_success_result(struct oxr_session *session)
Returns XR_SUCCESS or XR_SESSION_LOSS_PENDING as appropriate.
Definition oxr_objects.h:1430
static XrResult oxr_session_success_focused_result(struct oxr_session *session)
Returns XR_SUCCESS, XR_SESSION_LOSS_PENDING, or XR_SESSION_NOT_FOCUSED, as appropriate.
Definition oxr_objects.h:1445
XrResult oxr_space_xdev_pose_create(struct oxr_logger *log, struct oxr_session *sess, struct xrt_device *xdev, enum xrt_input_name name, const struct xrt_pose *pose, struct oxr_space **out_space)
Monado special space that always points to a specific xrt_device and pose, useful when you want to by...
Definition oxr_space.c:254
XRT_CHECK_RESULT XrResult oxr_space_locate_device(struct oxr_logger *log, struct xrt_device *xdev, struct oxr_space *baseSpc, XrTime time, struct xrt_space_relation *out_relation)
Locate the xrt_device in the given base space, useful for implementing hand tracking location look up...
Definition oxr_space.c:597
static XrDebugUtilsMessengerEXT oxr_messenger_to_openxr(struct oxr_debug_messenger *mssngr)
To go back to a OpenXR object.
Definition oxr_objects.h:599
XrResult oxr_space_locate(struct oxr_logger *log, struct oxr_space *spc, struct oxr_space *baseSpc, XrTime time, XrSpaceLocation *location)
Definition oxr_space.c:464
XrResult oxr_session_frame_end(struct oxr_logger *log, struct oxr_session *sess, const XrFrameEndInfo *frameEndInfo)
Definition oxr_session_frame_end.c:1764
static XrInstance oxr_instance_to_openxr(struct oxr_instance *inst)
To go back to a OpenXR object.
Definition oxr_objects.h:177
static XrHandTrackerEXT oxr_hand_tracker_to_openxr(struct oxr_hand_tracker *hand_tracker)
To go back to a OpenXR object.
Definition oxr_objects.h:279
static XrActionSet oxr_action_set_to_openxr(struct oxr_action_set *act_set)
To go back to a OpenXR object.
Definition oxr_objects.h:268
static XrSession oxr_session_to_openxr(struct oxr_session *sess)
To go back to a OpenXR object.
Definition oxr_objects.h:386
oxr_session_graphics_ext
What graphics API was this session created with.
Definition oxr_defines.h:115
static XrAction oxr_action_to_openxr(struct oxr_action *act)
To go back to a OpenXR object.
Definition oxr_objects.h:303
XrResult oxr_d3d_get_requirements(struct oxr_logger *log, struct oxr_system *sys, LUID *adapter_luid, D3D_FEATURE_LEVEL *min_feature_level)
Common GetRequirements call for D3D11 and D3D12.
Definition oxr_d3d.cpp:42
bool oxr_xdev_find_input(struct xrt_device *xdev, enum xrt_input_name name, struct xrt_input **out_input)
Return true if it finds an input of that name on this device.
Definition oxr_xdev.c:110
oxr_space_type
Internal enum for the type of space, lets us reason about action spaces.
Definition oxr_defines.h:95
XrResult oxr_vk_create_vulkan_instance(struct oxr_logger *log, struct oxr_system *sys, const XrVulkanInstanceCreateInfoKHR *createInfo, VkInstance *vulkanInstance, VkResult *vulkanResult)
Definition oxr_vulkan.c:229
XrResult oxr_session_request_exit(struct oxr_logger *log, struct oxr_session *sess)
Definition oxr_session.c:583
void oxr_session_change_state(struct oxr_logger *log, struct oxr_session *sess, XrSessionState state, XrTime time)
Change the state of the session, queues a event.
Definition oxr_session.c:353
XrResult oxr_system_fill_in(struct oxr_logger *log, struct oxr_instance *inst, XrSystemId systemId, uint32_t view_count, struct oxr_system *sys)
Definition oxr_system.c:304
XrResult oxr_create_messenger(struct oxr_logger *, struct oxr_instance *inst, const XrDebugUtilsMessengerCreateInfoEXT *, struct oxr_debug_messenger **out_mssngr)
Definition oxr_messenger.c:44
XrResult oxr_space_action_create(struct oxr_logger *log, struct oxr_session *sess, uint32_t key, const XrActionSpaceCreateInfo *createInfo, struct oxr_space **out_space)
Definition oxr_space.c:167
XRT_CHECK_RESULT XrResult oxr_space_get_xrt_space(struct oxr_logger *log, struct oxr_space *spc, struct xrt_space **out_xspace)
Get the xrt_space associated with this oxr_space, the xrt_space will be reference counted by this fun...
Definition oxr_space.c:629
XrResult oxr_session_frame_wait(struct oxr_logger *log, struct oxr_session *sess, XrFrameState *frameState)
Definition oxr_session.c:1065
static XrSpace oxr_space_to_openxr(struct oxr_space *spc)
To go back to a OpenXR object.
Definition oxr_objects.h:492
oxr_subaction_path
Sub action paths.
Definition oxr_defines.h:54
XrResult oxr_vk_create_vulkan_device(struct oxr_logger *log, struct oxr_system *sys, const XrVulkanDeviceCreateInfoKHR *createInfo, VkDevice *vulkanDevice, VkResult *vulkanResult)
Definition oxr_vulkan.c:386
bool oxr_xdev_find_output(struct xrt_device *xdev, enum xrt_output_name name, struct xrt_output **out_output)
Return true if it finds an output of that name on this device.
Definition oxr_xdev.c:129
#define XRT_CAST_PTR_TO_OXR_HANDLE(HANDLE_TYPE, PTR)
Cast a pointer to an OpenXR handle in such a way as to avoid warnings.
Definition oxr_objects.h:91
#define XRT_SYSTEM_MAX_DEVICES
Maximum number of devices simultaneously usable by an implementation of xrt_system_devices.
Definition xrt_limits.h:26
#define XRT_MAX_SWAPCHAIN_IMAGES
Max swapchain images, artificial limit.
Definition xrt_limits.h:53
xrt_input_name
Every internal input source known to monado with a baked in type.
Definition xrt_defines.h:930
xrt_output_name
Name of a output with a baked in type.
Definition xrt_defines.h:1612
xrt_plane_detector_flags_ext
Flags used when running plane detection.
Definition xrt_plane_detector.h:46
Wrapper around OS threading native functions.
Shared internal defines and enums in the state tracker.
Holds dpad state related functions.
XrResult oxr_get_face_state_android(struct oxr_logger *log, struct oxr_face_tracker_android *facial_tracker_android, const XrFaceStateGetInfoANDROID *getInfo, XrFaceStateANDROID *faceStateOutput)
Definition oxr_face_tracking_android.c:77
Forward declarations for OpenXR state tracker structs.
The objects that handle session running status and blocking of xrWaitFrame.
Contains handle-related functions and defines only required in a few locations.
XrResult oxr_instance_create(struct oxr_logger *log, const XrInstanceCreateInfo *createInfo, XrVersion major_minor, const struct oxr_extension_status *extensions, struct oxr_instance **out_instance)
Definition oxr_instance.c:261
Holds per instance action context.
Holds per instance action cache.
Holds interaction profile array related functions.
Path store structure and functions.
Wrapper functions that take oxr_instance and call into path/cache functions.
Reference-counted base for OpenXR state tracker objects.
Holds per session action context.
Holds per session attached actions.
Provides a utility macro for dealing with subaction paths.
#define OXR_FOR_EACH_SUBACTION_PATH(_)
Expansion macro (x-macro) that calls the macro you pass with the shorthand name of each subaction pat...
Definition oxr_subaction.h:44
Definition m_space.cpp:87
A wrapper around a native mutex.
Definition os_threading.h:69
Data associated with an Action that has been attached to a Session.
Definition oxr_objects.h:1679
struct oxr_session_attached_actions * attached_actions
The session attached actions this action attachment belongs to.
Definition oxr_objects.h:1687
struct oxr_subaction_paths any_pose_subaction_path
For pose actions any subaction paths are special treated, at bind time we pick one subaction path and...
Definition oxr_objects.h:1697
struct oxr_action_ref * act_ref
This action's refcounted data.
Definition oxr_objects.h:1684
struct oxr_action_set_attachment * act_set_attached
The owning action set attachment.
Definition oxr_objects.h:1681
uint32_t act_key
Unique key for the session hashmap.
Definition oxr_objects.h:1690
The set of inputs/outputs for a single sub-action path for an action.
Definition oxr_objects.h:1657
A output action pair of a xrt_output_name and a xrt_device.
Definition oxr_objects.h:1637
The reference-counted data of an action.
Definition oxr_objects.h:1946
struct oxr_subaction_paths subaction_paths
Which sub action paths that this action was created with.
Definition oxr_objects.h:1959
XrActionType action_type
Type this action was created with.
Definition oxr_objects.h:1956
uint32_t act_key
Unique key for the session hashmap.
Definition oxr_objects.h:1953
The data associated with the attachment of an Action Set (oxr_action_set) to as Session (oxr_session)...
Definition oxr_objects.h:1560
struct oxr_session_action_context * sess_context
Owning session action context.
Definition oxr_objects.h:1562
struct oxr_action_attachment * act_attachments
An array of action attachments we own.
Definition oxr_objects.h:1574
struct oxr_action_set_ref * act_set_ref
Action set refcounted data.
Definition oxr_objects.h:1565
uint32_t act_set_key
Unique key for the session hashmap.
Definition oxr_objects.h:1568
size_t action_attachment_count
Length of oxr_action_set_attachment::act_attachments.
Definition oxr_objects.h:1579
struct oxr_subaction_paths requested_subaction_paths
Which sub-action paths are requested on the latest sync.
Definition oxr_objects.h:1571
The reference-counted data of an action set.
Definition oxr_objects.h:1865
uint32_t act_set_key
Unique key for the session hashmap.
Definition oxr_objects.h:1878
bool ever_attached
Has this action set even been attached to any session, marking it as immutable.
Definition oxr_objects.h:1875
uint32_t priority
Application supplied action set priority.
Definition oxr_objects.h:1881
A group of actions.
Definition oxr_objects.h:1903
struct oxr_instance_action_context * inst_context
Reference to the instance action context (reference-counted).
Definition oxr_objects.h:1911
struct u_hashset_item * name_item
The item in the name hashset.
Definition oxr_objects.h:1928
struct u_hashset_item * loc_item
The item in the localized hashset.
Definition oxr_objects.h:1931
struct oxr_action_set_ref * data
The data for this action set that must live as long as any session we are attached to.
Definition oxr_objects.h:1917
uint32_t act_set_key
Unique key for the session hashmap.
Definition oxr_objects.h:1925
struct oxr_instance * inst
Owner of this action set.
Definition oxr_objects.h:1908
struct oxr_handle_parent_base handle
Common structure for things referred to by OpenXR handles.
Definition oxr_objects.h:1905
The state of a action input.
Definition oxr_objects.h:1592
bool active
Is this active (bound and providing input)?
Definition oxr_objects.h:1599
XrTime timestamp
When was this last changed.
Definition oxr_objects.h:1605
A single action.
Definition oxr_objects.h:1976
struct oxr_action_set * act_set
Owner of this action.
Definition oxr_objects.h:1981
struct oxr_handle_base handle
Common structure for things referred to by OpenXR handles.
Definition oxr_objects.h:1978
struct u_hashset_item * loc_item
The item in the localized hashset.
Definition oxr_objects.h:1998
uint32_t act_key
Unique key for the session hashmap.
Definition oxr_objects.h:1992
struct u_hashset_item * name_item
The item in the name hashset.
Definition oxr_objects.h:1995
struct oxr_action_ref * data
The data for this action that must live as long as any session we are attached to.
Definition oxr_objects.h:1985
Interaction profile binding state.
Definition oxr_objects.h:1501
uint32_t * preferred_binding_path_index
store which entry in paths was suggested, for each action key
Definition oxr_objects.h:1513
const char * localized_name
Name presented to the user.
Definition oxr_objects.h:1506
Debug object created by the client program.
Definition oxr_objects.h:2009
struct oxr_handle_base handle
Common structure for things referred to by OpenXR handles.
Definition oxr_objects.h:2011
XrDebugUtilsMessageTypeFlagsEXT message_types
Types to submit to this messenger.
Definition oxr_objects.h:2020
PFN_xrDebugUtilsMessengerCallbackEXT user_callback
Callback function.
Definition oxr_objects.h:2023
struct oxr_instance * inst
Owner of this messenger.
Definition oxr_objects.h:2014
void *XR_MAY_ALIAS user_data
Opaque user data.
Definition oxr_objects.h:2026
XrDebugUtilsMessageSeverityFlagsEXT message_severities
Severities to submit to this messenger.
Definition oxr_objects.h:2017
dpad emulation settings from oxr_interaction_profile
Definition oxr_objects.h:1467
Holds dpad binding state for a single interaction profile.
Definition oxr_dpad_state.h:83
Definition oxr_event.c:30
Structure tracking which extensions are enabled for a given instance.
Definition oxr_objects.h:1157
Helper that handles synchronizing the xr{Wait,Begin,End}Frame calls.
Definition oxr_frame_sync.h:37
A hand tracker.
Definition oxr_hand_tracking.h:38
A single OpenXR handle, which is a child of a parent handle holder, if any.
Definition oxr_handle_base.h:62
Used to hold diverse child handles and ensure orderly destruction.
Definition oxr_handle_base.h:88
Holds all action-related state that lives at the instance level (shared across sessions).
Definition oxr_instance_action_context.h:47
This holds cached paths for subaction paths.
Definition oxr_instance_path_cache.h:27
Main object that ties everything together.
Definition oxr_objects.h:1173
bool disable_vulkan_format_depth
Some applications can't handle depth formats, or they trigger a bug in a specific version of the appl...
Definition oxr_objects.h:1240
bool parallel_views
For applications that rely on views being parallel, notably some OpenVR games with OpenComposite.
Definition oxr_objects.h:1271
struct oxr_instance::@285 openxr_version
The OpenXR version requested in the app info. It determines the instance's OpenXR version.
struct oxr_path_store path_store
Path store for managing paths.
Definition oxr_objects.h:1200
bool disable_vulkan_format_depth_stencil
Some applications can't handle depth stencil formats, or they trigger a bug in a specific version of ...
Definition oxr_objects.h:1253
XrVersion major_minor
Stores only major.minor version. Simplifies comparisons for e.g. "at least OpenXR 1....
Definition oxr_objects.h:1188
bool skip_end_session
Unreal 4 has a bug calling xrEndSession; the function should just exit.
Definition oxr_objects.h:1262
struct oxr_instance_action_context * action_context
The default action context (reference-counted). Owned by instance; action sets also hold references.
Definition oxr_objects.h:1216
bool no_validation_error_in_create_ref_space
Return XR_ERROR_REFERENCE_SPACE_UNSUPPORTED instead of XR_ERROR_VALIDATION_FAILURE in xrCreateReferen...
Definition oxr_objects.h:1268
struct oxr_extension_status extensions
Enabled extensions.
Definition oxr_objects.h:1182
struct oxr_instance_path_cache path_cache
Path cache for actions, needs path_store to work.
Definition oxr_objects.h:1213
bool disable_quad_views
Disable the listing of quad views as a supported view config, the extensions are still exposed.
Definition oxr_objects.h:1259
struct oxr_debug_messenger * messengers[256]
Debug messengers.
Definition oxr_objects.h:1292
struct oxr_handle_parent_base handle
Common structure for things referred to by OpenXR handles.
Definition oxr_objects.h:1175
bool no_usage_bit_validation_in_create_swapchain
Don't return XR_ERROR_VALIDATION_FAILURE if an application sets unsupported usage flags when calling ...
Definition oxr_objects.h:1288
bool map_stage_to_local_floor
For applications that use stage and don't offer recentering.
Definition oxr_objects.h:1274
bool no_texture_source_alpha
Beat Saber submits its projection layer with XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT set.
Definition oxr_objects.h:1281
A single interaction profile.
Definition oxr_objects.h:1479
enum xrt_device_name xname
Used to lookup xrt_binding_profile for fallback.
Definition oxr_objects.h:1483
const char * localized_name
Name presented to the user.
Definition oxr_objects.h:1486
Logger struct that lives on the stack, one for each call client call.
Definition oxr_logger.h:44
A pair of hashets (name_store and loc_store) with an optional mutex so that both members can be remov...
Definition oxr_pair_hashset.h:36
Path store structure for managing path storage and lookup.
Definition oxr_path_store.h:31
Definition oxr_refcounted.h:21
This holds all of the action state that belongs on the session level.
Definition oxr_session_action_context.h:62
Per-session map of action key to action attachment.
Definition oxr_session_attached_actions.h:37
Object that client program interact with.
Definition oxr_objects.h:1326
XrResult(* create_swapchain)(struct oxr_logger *, struct oxr_session *sess, const XrSwapchainCreateInfo *, struct oxr_swapchain **)
To pipe swapchain creation to right code.
Definition oxr_objects.h:1412
struct xrt_compositor_native * xcn
Native compositor that is wrapped by client compositors.
Definition oxr_objects.h:1338
struct oxr_session_action_context action_context
Holds all the action state that belongs on the session level.
Definition oxr_objects.h:1389
struct xrt_session * xs
The xrt_session backing this session.
Definition oxr_objects.h:1335
XrViewConfigurationType current_view_config_type
This is set in xrBeginSession and is the primaryViewConfiguration argument, this is then used in xrEn...
Definition oxr_objects.h:1351
uint32_t frame_timing_wait_sleep_ms
Extra sleep in wait frame.
Definition oxr_objects.h:1407
struct os_precise_sleeper sleeper
Used to implement precise extra sleeping in wait frame.
Definition oxr_objects.h:1384
bool presence
State of the head's XRT_INPUT_GENERIC_HEAD_DETECT input, for oxr_poll_event.
Definition oxr_objects.h:1354
struct oxr_session_attached_actions attached_actions
Per-session map of action key to action attachment (thread-safe).
Definition oxr_objects.h:1394
enum oxr_session_graphics_ext gfx_ext
What graphics type was this session created with.
Definition oxr_objects.h:1332
bool has_ended_once
There is a extra state between xrBeginSession has been called and the first xrEndFrame has been calle...
Definition oxr_objects.h:1360
bool has_lost
initial relation of head in "global" space.
Definition oxr_objects.h:1421
float ipd_meters
IPD, to be expanded to a proper 3D relation.
Definition oxr_objects.h:1399
struct oxr_handle_parent_base handle
Common structure for things referred to by OpenXR handles.
Definition oxr_objects.h:1328
bool frame_timing_spew
Frame timing debug output.
Definition oxr_objects.h:1404
Can be one of several reference space types, or a space that is bound to an action.
Definition oxr_objects.h:1747
struct oxr_subaction_paths subaction_paths
Which sub action path is this?
Definition oxr_objects.h:1764
enum oxr_space_type space_type
What kind of space is this?
Definition oxr_objects.h:1761
uint32_t act_key
Action key from which action this space was created from.
Definition oxr_objects.h:1758
struct xrt_pose pose
Pose that was given during creation.
Definition oxr_objects.h:1755
struct oxr_session * sess
Owner of this space.
Definition oxr_objects.h:1752
struct oxr_handle_base handle
Common structure for things referred to by OpenXR handles.
Definition oxr_objects.h:1749
A parsed equivalent of a list of sub-action paths.
Definition oxr_subaction.h:99
A set of images used for rendering.
Definition oxr_objects.h:1790
struct oxr_session * sess
Owner of this swapchain.
Definition oxr_objects.h:1795
uint32_t face_count
The number of cubemap faces. 6 for cubemaps, 1 otherwise.
Definition oxr_objects.h:1807
struct xrt_swapchain * swapchain
Compositor swapchain.
Definition oxr_objects.h:1798
struct oxr_handle_base handle
Common structure for things referred to by OpenXR handles.
Definition oxr_objects.h:1792
uint32_t width
Swapchain size.
Definition oxr_objects.h:1801
uint32_t array_layer_count
For 1 is 2D texture, greater then 1 2D array texture.
Definition oxr_objects.h:1804
Single or multiple devices grouped together to form a system that sessions can be created from.
Definition oxr_objects.h:1083
struct xrt_system * xsys
The XRT interfaces level system.
Definition oxr_objects.h:1087
VkPhysicalDevice suggested_vulkan_physical_device
The device returned with the last xrGetVulkanGraphicsDeviceKHR or xrGetVulkanGraphicsDevice2KHR call.
Definition oxr_objects.h:1120
PFN_vkGetInstanceProcAddr vk_get_instance_proc_addr
Stores the vkGetInstanceProcAddr passed to xrCreateVulkanInstanceKHR to be used when looking up Vulka...
Definition oxr_objects.h:1126
struct xrt_system_devices * xsysd
System devices used in all session types.
Definition oxr_objects.h:1090
struct xrt_space_overseer * xso
Space overseer used in all session types.
Definition oxr_objects.h:1093
VkInstance vulkan_enable2_instance
The instance/device we create when vulkan_enable2 is used.
Definition oxr_objects.h:1117
bool gotten_requirements
Have the client application called the gfx api requirements func?
Definition oxr_objects.h:1101
struct xrt_system_compositor * xsysc
System compositor, used to create session compositors.
Definition oxr_objects.h:1096
Holds the properties that a system supports for a view configuration type.
Definition oxr_objects.h:1061
Time-keeping state structure.
Definition u_time.cpp:30
A embeddable hashset item, note that the string directly follows the u_hashset_item.
Definition u_hashset.h:37
Definition u_index_fifo.h:21
Definition xrt_defines.h:2301
A body tracker, owns the policy for selecting which device and body-tracking source back a single Ope...
Definition xrt_body_tracker.h:102
Main compositor server interface.
Definition xrt_compositor.h:2290
Common compositor client interface/base.
Definition xrt_compositor.h:1046
A single HMD or input device.
Definition xrt_device.h:340
The (future) result of an asynchronous operation.
Definition xrt_future.h:39
A future is a concurrency primitive that provides a mechanism to access results of asynchronous opera...
Definition xrt_future.h:75
This interface acts as a root object for Monado.
Definition xrt_instance.h:121
A single named output, that sits on a xrt_device.
Definition xrt_device.h:228
Each plane has n polygons; ultimately plane metadata from xrt_plane_detections_ext::locations and xrt...
Definition xrt_plane_detector.h:172
A pose composed of a position and orientation.
Definition xrt_defines.h:492
The XRT representation of XrSession, this object does not have all of the functionality of a session,...
Definition xrt_session.h:264
Object that oversees and manages spaces, one created for each XR system.
Definition xrt_space.h:97
A relation with two spaces, includes velocity and acceleration.
Definition xrt_defines.h:683
A space very similar to a OpenXR XrSpace but not a full one-to-one mapping, but used to power XrSpace...
Definition xrt_space.h:32
Common swapchain interface/base.
Definition xrt_compositor.h:593
The system compositor handles composition for a system.
Definition xrt_compositor.h:2531
A collection of xrt_device, and an interface for identifying the roles they have been assigned.
Definition xrt_system.h:216
A system is a collection of devices, policies and optionally a compositor that is organised into a ch...
Definition xrt_system.h:65
Visibility mask helper, the indices and vertices are tightly packed after this struct.
Definition xrt_visibility_mask.h:26
Misc helpers for device drivers.
Hashmap for integer values header.
Header holding Android-specific details.
xrt_android_lifecycle_event
Distinguishes the possible Android lifecycle events from each other.
Definition xrt_android.h:43
Header declaring XRT graphics interfaces.
Auto detect OS and certain features.
xrt_perf_notify_level
Performance level.
Definition xrt_defines.h:2456
xrt_device_name
A enum that is used to name devices so that the state trackers can reason about the devices easier.
Definition xrt_defines.h:737
xrt_perf_domain
Domain type.
Definition xrt_defines.h:2429
Header defining an xrt display or controller device.
Interface for creating futures.
Header for limits of the XRT interfaces.
Include all of the openxr headers in one place.
Header defining xrt space and space overseer.
Header for system objects.
Header defining the tracking system integration in Monado.
Include all of the Vulkan headers in one place, and cope with any "messy" includes implied by it.