The open source OpenXR runtime
0
fork

Configure Feed

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

st/oxr: Use CMake-derived version constants for OpenXR runtime version

authored by

Robbie Bridgewater and committed by
Ryan Pavlik
c91928f3 44d7b848

+1 -1
+1 -1
src/xrt/state_trackers/oxr/oxr_instance.c
··· 401 401 XrResult 402 402 oxr_instance_get_properties(struct oxr_logger *log, struct oxr_instance *inst, XrInstanceProperties *instanceProperties) 403 403 { 404 - instanceProperties->runtimeVersion = XR_MAKE_VERSION(21, 0, 0); 404 + instanceProperties->runtimeVersion = XR_MAKE_VERSION(u_version_major, u_version_minor, u_version_patch); 405 405 snprintf(instanceProperties->runtimeName, XR_MAX_RUNTIME_NAME_SIZE - 1, "Monado(XRT) by Collabora et al '%s'", 406 406 u_git_tag); 407 407