Releases: KhronosGroup/OpenXR-SDK-Source
OpenXR SDK (Source) 1.0.30
OpenXR SDK 1.0.30 (2023-09-20)
This release is primarily a quality improvement release, fixing a range of
issues in the registry and SDK, including fixing a loader bug related to layers,
in addition to a new vendor extension and an updated vendor extension.
- Registry
- Add missing enum tags for enum-sized array struct members.
(internal MR 2731) - Fix EGL "get proc addr" function pointer typedef.
(internal MR 2939) - New vendor extension:
XR_YVR_controller_interaction
(internal MR 2841) XR_BD_controller_interaction
: Add support for G3 devices
(internal MR 2872)- Fix specification errors highlighted by fixed tooling.
(internal MR 2923)
- Add missing enum tags for enum-sized array struct members.
- SDK
- Add installable manual page for
openxr_runtime_list_json
.
(internal MR 2899) - Remove unused diagram exports from loader directory.
(internal MR 2907) - Update URLs in manual pages.
(internal MR 2935) - Validation Layer: Remove conditional
XR_KHR_headless
support as the extension
is not part of OpenXR 1.0.
(internal MR 2901) - build system: Add CTest support for running the loader test.
(internal MR 2289,
OpenXR-SDK-Source issue 309,
internal issue 1733) - hello_xr: Clean up how we specify the default graphics plugin on Android.
(internal MR 2917) - list_json: Add missing return statement for exit code.
(internal MR 2936) - loader: fix for implicit/explicit api layer loading logic
(OpenXR-SDK-Source PR 421,
internal issue 2079)
- Add installable manual page for
GitOrigin-RevId: f7a0c0f3691f0c7b0a239cb34e41d01042d5a02a
The Android loader can be found on Maven Central, by adding the following line to your Android app's build.gradle dependencies section:
implementation 'org.khronos.openxr:openxr_loader_for_android:1.0.30'
Alternately, the AAR file (plus signature by the spec editor key and associated POM) are attached to this release.
Other release files are signed by Ryan Pavlik's key, key fingerprint F029455EAB70F520FF4A03BD7F534CD56F00321E.
OpenXR SDK (Source) 1.0.29
OpenXR SDK 1.0.29 (2023-08-25)
This release contains several fixes to the specification registry, improvements
to the loader, layers, and loader test, as well as enhancements to the loader
documentation/specification to support architecture and ABI specific active
runtime manifest names on Linux and Android.
- Registry
- Change
PFNEGLGETPROCADDRESSPROC
(foreglGetProcAddress
) to a locally
defined type to avoid compiler errors.
(internal MR 2468) - Extension reservation: Register author ID and reserve vendor extensions for
YVR.
(internal MR 2832) - New vendor extension:
XR_META_passthrough_preferences
(internal MR 2694) XR_HTCX_vive_tracker_interaction
: Added new role paths for wrists and ankles.
(internal MR 2728)
- Change
- SDK
- Changes also included in 1.0.28.1 SDK hotfix release
- layers: Build with
/bigobj
or equivalent on Windows due to increased number
of generated functions with spec growth.
(internal MR 2837,
internal issue 2051,
OpenXR-SDK-Source PR 414)
- layers: Build with
- Changes also included in 1.0.28.2 SDK hotfix release
- Android AAR artifacts (loader) and hello_xr: Fix
<queries>
element contents.
(internal MR 2840,
internal issue 2053) - Android AAR artifacts: Fix C++ standard library selection for Android artifacts
inbuild-aar.sh
(internal MR 2836,
internal issue 2052) - Android AAR artifacts: Use
jar
instead of 7-zip to perform archiving, and
document requirements inbuild-aar.sh
(internal MR 2836,
OpenXR-SDK-Source issue 303,
internal issue 1711) - build system: Support SDK hotfix versions (fourth version component).
(internal MR 2836)
- Android AAR artifacts (loader) and hello_xr: Fix
- Add XrVector2f length function to
xr_linear.h
(internal MR 2876) - Add build.gradle files for list_json, c_compile_test.
(internal MR 2908) - Change
PFNEGLGETPROCADDRESSPROC
(foreglGetProcAddress
) to a locally
defined type to avoid compiler errors.
(internal MR 2468) - Enable
loader_test
tests which require a valid extension
(internal MR 2790) - Fix building hello_xr with mingw compiler.
(internal MR 2850) - Improvement: Reduce size of dispatch table in OpenXR loader. (Full size table
still shipped in OpenXR-SDK even though it is not used by the loader anymore.)
(internal MR 2810,
internal MR 2842) - Maintenance script updates.
(internal MR 2900) - loader: Add support for architecture-specific active runtime manifests for
Linux, macOS, and Android.
(internal MR 2450,
internal issue 2066,
internal MR 2871) - loader: refactor to use jnipp on Android
(internal MR 2812) - loader: disable
loader_test
if api layer building is disabled
(internal MR 2843) - loader_test: Replace session test with action test to make test more
maintainable.
(internal MR 2786) - validation layer: Fix deadlock when calling
XR_EXT_debug_utils
functions.
(internal MR 2865)
- Changes also included in 1.0.28.1 SDK hotfix release
The Android loader can be found on Maven Central, by adding the following line to your Android app's build.gradle dependencies section:
implementation 'org.khronos.openxr:openxr_loader_for_android:1.0.29'
Alternately, the AAR file (plus signature by the spec editor key and associated POM) are attached to this release.
Other release files are signed by Ryan Pavlik's key, key fingerprint F029455EAB70F520FF4A03BD7F534CD56F00321E.
OpenXR SDK (Source) 1.0.28 (with 1.0.28.2 hotfix)
OpenXR SDK 1.0.28 (2023-07-10)
NOTE: Binary artifacts for Windows attached to this release correspond to the hotfix release release-1.0.28.1
tag, and binary artifacts for Android correspond to the hotfix release release-1.0.28.2
tag (the 1.0.28 artifacts have been removed as they were defective). See below for the contents of these SDK hotfix releases.
This release contains improved compatibility and code quality fixes for the
loader, support for loading certain API layers on Android-based devices, and a
number of other improvements, in addition to the new extensions. Additionally,
the loader documentation now describes how OpenXR handles compatibility with
Android API levels of 30 and above: runtimes may need to update accordingly to
support this compatibility solution.
- OpenXR SDK 1.0.28.2 hotfix release includes the following fixes
- Loader spec: Fix description of
<queries>
element contents: existing
description would fail to install.
(internal MR 2840,
internal issue 2053) - Android AAR artifacts (loader) and hello_xr: Fix
<queries>
element contents.
(internal MR 2840,
internal issue 2053) - Android AAR artifacts: Fix C++ standard library selection for Android artifacts
inbuild-aar.sh
(internal MR 2836,
internal issue 2052) - Android AAR artifacts: Use
jar
instead of 7-zip to perform archiving, and
document requirements inbuild-aar.sh
(internal MR 2836,
OpenXR-SDK-Source issue 303,
internal issue 1711) - build system: Support SDK hotfix versions (fourth version component).
(internal MR 2836)
- Loader spec: Fix description of
- OpenXR SDK 1.0.28.1 hotfix release includes the following fix
- API dump layer: Fix build on Windows on ARM64.
(OpenXR-SDK-Source PR 414)
- API dump layer: Fix build on Windows on ARM64.
- Registry
- Added defines to
xr.xml
for extension enum base and enum stride.
(internal MR 2693,
OpenXR-Docs issue 148,
internal issue 1979) - Extension reservation: Reserve an extension for
XR_EXT_future
(internal MR 2631) - Extension reservation: Register
ANDROID
author ID and reserve 15 extensions
for it.
(internal MR 2690) - Extension reservation: Reserve extensions for "user presence" and "locate
spaces"
(internal MR 2705) - Extension reservation: Reserve 25 extensions for Magic Leap.
(internal MR 2778) - Extension reservation: Reserve extension for
XR_KHR_extendable_action_binding
(internal MR 2779) - Fix spelling.
(internal MR 2766) - Fixed the error code specification for
xrGetControllerModelPropertiesMSFT
function.
(internal MR 2600) - New multi-vendor extension:
XR_EXT_hand_interaction
(internal MR 2116) - New multi-vendor extension:
XR_EXT_plane_detection
(internal MR 2510,
internal MR 2791) - New multi-vendor extension:
XR_EXT_hand_tracking_data_source
(internal MR 2568) - New vendor extension:
XR_META_passthrough_color_lut
(internal MR 2507) - New vendor extension:
XR_META_virtual_keyboard
(internal MR 2555) - New vendor extension:
XR_OPPO_controller_interaction
(OpenXR-Docs PR 146) - Update Magic Leap contact
(internal MR 2699) XR_FB_face_tracking
: Non-functional registry change, fixing a problem with
standalone headers.
(internal MR 2663)XR_FB_scene
: IntroduceXrSemanticLabelsSupportInfoFB
and bump spec version
to 3.
(internal MR 2682)XR_FB_spatial_entity
andXR_FB_scene
: AddXR_ERROR_SIZE_INSUFFICIENT
return code to functions which use the two-call idiom.
(internal MR 2718)XR_FB_touch_controller_pro
: Fix XML to require thetouch_controller_pro
interaction profile for the extension
(internal MR 2806)- registry: Remove extraneous whitespace from some commands.
(OpenXR-SDK-Source PR 397) - schematron: Improve self tests.
(internal MR 2680) - schematron: Require vendor tag on interaction profile paths introduced by
extensions.
(internal MR 2684) - scripts: Allow schematron to check an alternate XML file.
(internal MR 2670)
- Added defines to
- SDK
- Allow compilation of OpenXR SDK on Mac
(internal MR 2788,
internal MR 2789,
internal MR 2790,
internal MR 2800) - Common: Add
stdint.h
include toplatform_utils.hpp
for GCC 13+
(OpenXR-SDK-Source PR 406) - Describe building OpenXR SDK on macOS with Xcode
(internal MR 2768) - Handle clang-format-16 in
runClangFormat.sh
, and adjust source files so its
output matches the earlier version used on CI.
(internal MR 2666,
internal MR 2814) - Improvement: Fix clang warning
-Wundef
.
(internal MR 2717) - Improvement: Fix leftover warnings when building with
-Wall
.
(internal MR 2754,
OpenXR-SDK-Source PR 410) - Loader: On Android, use a single logcat tag for all parts of the loader.
(internal MR 2688) - Loader: Update the required
queries
elements for an OpenXR application on
Android, so that runtime and layer components loaded in the application process
may access their own package in API >29.
(internal MR 2708) - Loader: Search system directories for API layer manifests on Android
(internal MR 2709) - Loader: Add Product and OEM partition to active runtime search path on Android
(internal MR 2709) - Loader: Improve casting to
uint32_t
edge case handling.
(internal MR 2745) - Loader: Clear possible dangling
next
pointers inXR_EXT_debug_utils
label
structures.
(internal MR 2764) - Validation Layer: Fix the validation_layer_generator to not check static array
addresses.
(OpenXR-SDK-Source PR 399) - api_layers: Update API Layers spec section in README.md
(internal MR 2753) - cmake: Set up alias targets
OpenXR::openxr_loader
andOpenXR::headers
so
that the loader and headers may be used the same whether you used
find_package(OpenXR)
on binaries or have included the source tree as a
subproject.
(internal MR 2793) - gradle: Add license for gradlew and gradlew.bat
(internal MR 2725) - gradle: General cleanup and updates of Android build system.
(internal MR 2796) - hello_xr:...
- Allow compilation of OpenXR SDK on Mac
OpenXR SDK (Source) 1.0.27
OpenXR SDK 1.0.27 (2023-03-21)
This release contains a large list of improvements, including interaction
profile definitions in machine-readable format in the XML, consistent tool-based
formatting of the XML, a new list_json
tool to ease updates to
OpenXR-Inventory, and a wide variety of new vendor and multi-vendor
extensions, in addition to a collection of smaller improvements.
- Registry
- Add interaction profile definitions to
xr.xml
(internal MR 2485) - Chore: Format the full XML API registry with
PrettyRegistryXML, making some
small changes by hand to clean up.
(internal MR 2540,
internal MR 2329,
OpenXR-SDK-Source PR 373,
OpenXR-Docs PR 14,
OpenXR-CTS PR 50,
OpenXR-SDK PR 12) - Document how to generate a standalone header file for an extension.
(internal MR 2627) - Extension reservation: Register author ID and reserve vendor extensions for
Logitech.
(internal MR 2504) - Extension reservation: Reserve an extension number for a multi-vendor
extension.
(internal MR 2520) - Extension reservation: Reserve an extension for
XR_EXT_hand_tracking_usage
(internal MR 2550) - Extension reservation: Reserve extension id 430 for
XR_EXT_plane_detection
(internal MR 2565) - Extension reservation: Reserve vendor extensions for Monado.
(internal MR 2613) - Extension reservation: Reserve vendor extensions for ACER.
(OpenXR-Docs PR 142) - Extension reservation: Reserve a vendor extension for OPPO.
(OpenXR-Docs PR 145) - New vendor extension:
XR_FB_composition_layer_depth_test
(internal MR 2208,
internal issue 1657) - New vendor extension:
XR_META_foveation_eye_tracked
(internal MR 2239,
internal MR 2273,
internal MR 2332) - New vendor extension:
XR_QCOM_tracking_optimization_settings
(internal MR 2261,
internal issue 1703) - New vendor extension:
XR_META_local_dimming
(internal MR 2267,
internal MR 2595) - New vendor extension:
XR_FB_spatial_entity_sharing
(internal MR 2274) - New vendor extension:
XR_FB_scene_capture
(internal MR 2286) - New vendor extension:
XR_FB_spatial_entity_storage_batch
(internal MR 2312) - New vendor extension:
XR_FB_haptic_amplitude_envelope
(internal MR 2326) - New vendor extension:
XR_FB_touch_controller_pro
(internal MR 2327,
internal issue 1916) - New vendor extension:
XR_FB_haptic_pcm
(internal MR 2329) - New vendor extension:
FB_face_tracking
(internal MR 2334,
internal MR 2539) - New vendor extension:
XR_FB_eye_tracking_social
(internal MR 2336,
internal MR 2576) - New vendor extension:
XR_FB_body_tracking
(internal MR 2339,
internal MR 2575) - New vendor extension:
XR_OCULUS_external_camera
(internal MR 2397,
internal MR 2344) - New vendor extension:
XR_FB_spatial_entity_user
(internal MR 2407) - New vendor extension:
XR_FB_touch_controller_proximity
(internal MR 2412) - New vendor extension:
XR_ML_global_dimmer
(internal MR 2461) - New vendor extension:
XR_ML_frame_end_info
(internal MR 2462,
internal MR 2536) - New vendor extension:
XR_ML_compat
(internal MR 2473) - New vendor extension:
XR_EXT_local_floor
(internal MR 2503,
internal issue 746,
internal issue 1606,
OpenXR-Docs issue 103) - New vendor extension:
XR_BD_controller_interaction
(internal MR 2527) - New vendor extension:
XR_MNDX_force_feedback_curl
(OpenXR-Docs PR 136) - Register author ID for Matthieu Bucchianeri.
(OpenXR-Docs PR 143) - Rename tag name to a short one for ByteDance.
(internal MR 2502) - Schema: Add initial tests for Schematron rules.
(internal MR 2512) - Schema: Add author ID schematron checks and change duplicate name/number report
to an assert
(internal MR 2514) - Schema: Fix Relax-NG checks of naming convention, and add naming convention
checks to Schematron.
(internal MR 2538) - Schematron: Update extension naming rule to allow for vendor tags to be
followed by an X for experimental and a version number
(internal MR 2518) - scripts: Let
deprecated
overrideprovisional
when choosing extension table
of contents section.
(internal MR 2547) - scripts: Fix leftover exclusion of
extensions/meta
fromcheckMarkup
now
that it no longer generated files.
(internal MR 2560)
- Add interaction profile definitions to
- SDK
- Experimental Extension Naming: Allow vendor tags to be followed by an "X" for
experimental and an optional version number (e.g. XR_EXTX2_hand_tracking).
Update source generator vendor checks accordingly
(internal MR 2518) - Fix typo in API Dump generation script
(internal MR 2608) - Loader: Fix dynamic build on MinGW.
(OpenXR-SDK-Source PR 362,
OpenXR-SDK-Source issue 367) - Loader and layers: In debug builds, log when non-empty environment variables
are being ignored due to executing with elevated privilege.
(OpenXR-SDK-Source PR 336) - Loader doc: Minor cleanups to API layer section.
(internal MR 2581) - Loader doc: Fix incorrect markup/dead links.
(internal MR 2598) - Remove third-party dependencies in
external/include/utils
.
(internal MR 2528) - Update all XrStructureType initialization to use standard OpenXR style.
(internal MR 2557) - Update URLs with branch names in manpages.
(internal MR 2648) - Validation layer: Fix function signature for xrNegotiateLoaderApiLayerInterface
in core validation api layer
...
- Experimental Extension Naming: Allow vendor tags to be followed by an "X" for
OpenXR SDK (Source) 1.0.26
OpenXR SDK 1.0.26 (2022-11-18)
This release contains new reflection headers, fixes and improvements to the
loader and hello_xr (especially on Android), some spec clarifications,
improvements to tooling, and a variety of new vendor and multi-vendor
extensions.
- Registry
- Add new
XR_EXT_active_action_set_priority
vendor extension.
(internal MR 2288,
internal issue 1699) - Add new
XR_HTC_passthrough
vendor extension.
(internal MR 2349) - Add new
XR_HTC_foveation
vendor extension.
(internal MR 2377) - Add a warning to
XR_COMPOSITION_LAYER_CORRECT_CHROMATIC_ABERRATION_BIT
saying
that it is not in use and planned for deprecation
(internal MR 2378,
internal issue 1751) - Add new
XR_META_headset_id
vendor extension.
(internal MR 2410) - Improve Schematron rules for the registry XML and update the tool version used.
(internal MR 2418,
internal MR 2426,
internal MR 2457,
internal MR 2460,
internal MR 2465) - Register author ID and reserve vendor extensions for ByteDance.
(internal MR 2482,
OpenXR-Docs PR 137) - Register author ID for danwillm and reserve vendor extensions.
(OpenXR-Docs PR 138) - Reserve vendor extensions for Microsoft.
(internal MR 2478) XR_EXTX_overlay
: Fix XML markup to correct generated valid usage for the
event structure.
(internal MR 2307)XR_EXT_performance_settings
: Fix XML markup to correct generated valid usage,
bump revision.
(internal MR 2306)XR_HTCX_vive_tracker_interaction
: Fix XML markup to correct generated valid
usage for the event structure.
(internal MR 2310)XR_HTC_facial_tracking
: Update vendor extension to version 2.
(internal MR 2416)- specification/scripts: Added new functionality in codegen scripts to support
creating single extension headers. Usage:python3 scripts/genxr.py -registry registry/xr.xml -standaloneExtension XR_FB_color_space standalone_header
(internal MR 2417)
- Add new
- SDK
- In-line comments added to
openxr_reflection.h
(internal MR 2357) - New
openxr_reflection_structs.h
andopenxr_reflection_parent_structs.h
reflection headers, containing additional, limited reflection expansion macro
definitions.
(internal MR 2357) - loader: Add missing
RegCloseKey
call.
(internal MR 2433) - loader: Report STL usage as "none" in script-built Android AAR because we
expose no C++ symbols.
(OpenXR-SDK-Source PR 332,
internal issue 1829,
internal issue 1831) - loader: Minor changes to fix a missing-prototypes warning/error.
(OpenXR-SDK-Source PR 345) - hello_xr: Correctly handle the case of 0 items returned in the Vulkan plugin.
(internal MR 2363) - hello_xr: Android exit should use
ANativeActivity_finish
.
(internal MR 2409,
OpenXR-SDK-Source issue 329,
internal issue 1820) - hello_xr: Simplify platform plugin for POSIX platforms.
(internal MR 2443,
internal MR 2436) - hello_xr: Minor tidy up of initialization code.
(internal MR 2449) - hello_xr: Add
android.permission.VIBRATE
permission needed by some runtimes
for the controller haptics.
(internal MR 2486) - hello_xr: Bump Android Gradle Plugin usage to 7.0.4 to fix building of hello_xr
on M1 device
(OpenXR-SDK-Source PR 334) - cmake: Use standard
CMAKE_INSTALL_INCLUDEDIR
to specify included directories.
(OpenXR-SDK-Source PR 347) - Android: Remove Gradle build files from loader directory: they were unused
because the Android Gradle Plugin could not build our AAR file correctly as
desired.
(internal MR 2453) - Android: Upgrade to gradle version 7.
(internal MR 2474) - Enable dependabot for GitHub Actions.
(OpenXR-SDK-Source PR 351,
OpenXR-SDK-Source PR 352,
OpenXR-SDK-Source PR 256) - Fix CI generation of NuGet packages.
(OpenXR-SDK-Source PR 350) - Improve GitHub CI for OpenXR-SDK-Source.
(OpenXR-SDK-Source PR 351,
OpenXR-SDK-Source PR 352,
OpenXR-SDK-Source PR 256)
- In-line comments added to
The Android loader can be found on Maven Central, by adding the following line to your Android app's build.gradle dependencies section:
implementation 'org.khronos.openxr:openxr_loader_for_android:1.0.26'
Alternately, the AAR file (plus signature by the spec editor key and associated POM) are attached to this release.
Other release files are signed by Ryan Pavlik's key, key fingerprint F029455EAB70F520FF4A03BD7F534CD56F00321E.
NOTE: At some future point, release artifacts will begin to all be signed by the spec editor key.
OpenXR SDK (Source) 1.0.25
OpenXR SDK 1.0.25 (2022-09-02)
This release contains a few specification clarifications and consistency
improvements, as well as some new vendor extensions. The OpenXR loader for
Android now supports API layers packaged in the application APK, which is
important for running the conformance tests, and which may also be used for
running with the validation layer enabled during application development, for
example. The loader design doc has been updated accordingly. The spec generation
toolchain scripts have been synchronized with Vulkan. Hello_XR now models the
recommended approach for selecting an environment blend mode, among other fixes.
- Registry
- Add new
XR_ML_ml2_controller_interaction
vendor extension.
(internal MR 2344) - Clarification: Note that all specialized swapchain image structures are
"returnedonly", which removes some unneeded generated implicit valid usage.
(internal MR 2303) - Clarification: Note that all event structs are "returnedonly", which removes
some unneeded generated implicit valid usage.
(internal MR 2305) - Register author ID for Oppo.
(OpenXR-Docs PR 129) - Register author ID for Fred Emmott.
(OpenXR-Docs PR 131) - Register author ID for Acer.
(OpenXR-Docs PR 132) - Reserve extension numbers for anticipated cross-vendor and Khronos extensions.
(internal MR 2337,
internal MR 2338,
internal MR 2389) - Reserve a vendor extension for Huawei.
(internal MR 2356) - Reserve vendor extensions for MNDX.
(OpenXR-Docs PR 133) - Update
XR_MSFT_scene_understanding
and
XR_MSFT_scene_understanding_serialization
vendor extensions to list error
codes that may be returned by functions.
(internal MR 2316) XR_FB_color_space
: MarkXrSystemColorSpacePropertiesFB
as "returned-only"
for consistency and to correct the implicit valid usage.
(internal MR 2304)XR_FB_display_refresh_rate
: MarkXrEventDataDisplayRefreshRateChangedFB
as
"returned only" for consistency.
(internal MR 2308)XR_FB_hand_tracking_mesh
: Fix two-call-idiom markup for
XrHandTrackingMeshFB
, affecting implicit valid usage, and increment the
revision.
(internal MR 2311)XR_FB_passthrough
: AddXrSystemPassthroughProperties2FB
and
XR_PASSTHROUGH_LAYER_DEPTH_BIT_FB
, update spec version to 3.
(internal MR 2333)XR_FB_render_model
: MarkXrRenderModelCapabilitiesRequestFB
as "returned-
only" for consistency and to correct the implicit valid usage.
(internal MR 2309)
- Add new
- SDK
- Loader design doc: Correct a wrong description of extension implementation
chosen by the loader when duplicates.
(internal MR 2324,
internal issue 1731) - hello_xr: Model the recommended behavior of choosing first blend mode
enumerated by xrEnumerateEnvironmentBlendModes that is supported by the app.
(internal MR 2352) - hello_xr: Fix exit on Android.
(internal MR 2403) - loader: Add Android support for API Layers bundled in the application APK.
(internal MR 2350) - loader: Move validation checks before initialization to avoid potential nullptr
dereference
(internal MR 2365) - loader: On Android, make sure we always build with the same C++ standard
library (static) whether using shell script or gradle.
(internal MR 2366) - loader: add -DXR_OS_APPLE define on macOS (fixes compilation on macOS)
(OpenXR-SDK-Source PR 323) - scripts: Synchronize scripts with Vulkan, and move all generated files into a
single target directory.
(internal MR 2335,
internal issue 1693,
internal MR 2393,
internal MR 2400) - scripts: Remove spurious warning from codegen script.
(internal MR 2341) - validation layer: Fix output to
XR_EXT_debug_utils
when no labels/names have
been defined.
(internal MR 2375)
- Loader design doc: Correct a wrong description of extension implementation
The Android loader can be found on Maven Central, by adding the following line to your Android app's build.gradle dependencies section:
implementation 'org.khronos.openxr:openxr_loader_for_android:1.0.25'
Alternately, the AAR file (plus signature by the spec editor key and associated POM) are attached to this release.
Other release files are signed by Ryan Pavlik's key, key fingerprint F029455EAB70F520FF4A03BD7F534CD56F00321E.
OpenXR SDK (Source) 1.0.24
OpenXR SDK 1.0.24 (2022-06-23)
- Registry
- Add new
XR_EXT_palm_pose
multi-vendor extension.
(internal MR 2112) - Add new
XR_FB_scene
vendor extension.
(internal MR 2237) - Fix structure definition in
XR_FB_spatial_entity_container
.
(internal MR 2278) - scripts: Teach xr_conventions that 2D, 3D, etc. are words for the purposes of
structure type enum generation.
(internal MR 2237)
- Add new
- SDK
- Loader: Fix filename and native lib dir sequence for log
(OpenXR-SDK-Source PR 311) - Loader: Fix loader building with Gradle and add CI checking for loader building
with Gradle
(OpenXR-SDK-Source PR 312) - hello_xr: Pick background clear color based on the selected environment blend
mode.
(internal MR 2275) - hello_xr: Defer Vulkan CPU sync until the next frame begins.
(OpenXR-SDK-Source PR 277) - hello_xr: Fix shader compile on Mali driver
(OpenXR-SDK-Source PR 310) - scripts: Delegate generating structure types to the conventions object as done
elsewhere in the repo.
(internal MR 2237)
- Loader: Fix filename and native lib dir sequence for log
The Android loader can be found on Maven Central, by adding the following line to your Android app's build.gradle dependencies section:
implementation 'org.khronos.openxr:openxr_loader_for_android:1.0.24'
Alternately, the AAR file (plus signature by the spec editor key and associated POM) are attached to this release.
Other release files are signed by Ryan Pavlik's key, key fingerprint F029455EAB70F520FF4A03BD7F534CD56F00321E.
OpenXR SDK (Source) 1.0.23
OpenXR SDK 1.0.23 (2022-05-27)
This release primarily features a large number of new vendor and multi-vendor
extensions, as well as some updates to existing extensions. Some improvements
and fixes were made in SDK as well.
- Registry
- Add new
XR_ULTRALEAP_hand_tracking_forearm
vendor extension.
(internal MR 2154) - Add new
XR_EXT_dpad_binding
multi-vendor extension.
(internal MR 2159) - Add "externally synchronized" markup for
xrBeginFrame
andxrEndFrame
so
they get the matching box and their session parameters are included in the list
of externally-synchronized parameters in the "Threading" section.
(internal MR 2179,
OpenXR-Docs issue 23,
internal issue 1216) - Add new
XR_FB_spatial_entity
vendor extension.
(internal MR 2194) - Add new
XR_FB_spatial_entity_storage
vendor extension.
(internal MR 2194) - Add new
XR_FB_spatial_entity_query
vendor extension.
(internal MR 2194) - Add new
XR_FB_composition_layer_settings
vendor extension.
(internal MR 2221) - Add new
XR_FB_spatial_entity_container
vendor extension.
(internal MR 2236) - Add new
XR_HTC_vive_wrist_tracker_interaction
vendor extension.
(internal MR 2252) - Add XR_HTC_hand_interaction extension.
(internal MR 2254) - Add new
XR_VARJO_view_offset
vendor extension.
(internal MR 2255) - Add new
XR_META_performance_metrics
vendor extension.
(internal MR 2256) - Add new
XR_META_vulkan_swapchain_create_info
vendor extension.
(internal MR 2257) - Change the XML type of
XR_MIN_COMPOSITION_LAYERS_SUPPORTED
so it outputs an
includable snippet for the spec text.
(internal MR 2201,
internal issue 1652,
OpenXR-Docs issue 117) - Fix registry consistency script and codegen scripts to allow extension of KHR
and EXT enumerations with vendor-specific members.
(internal MR 2213,
internal MR 2243) - Fix warning print statement arguments in header generation/validation script.
(internal MR 2244) - Reserve the extension number for multi-vendor hand interaction profile
extension.
(internal MR 2206) - Reserve vendor extensions 304-317 for Qualcomm
(internal MR 2258) - Reserve vendor extensions 318-370 for HTC.
(internal MR 2266) KHR_composition_layer_depth
: Update spec version to 6 for updated spec text.
(internal MR 2207,
internal issue 1651)XR_EXT_eye_gaze_interaction
: Update the spec version for spec text change.
(internal MR 2227)XR_EXT_uuid
: Add enum tags toXR_UUID_SIZE_EXT
to ensure it is defined
beforeXrUuidEXT
in generated header
(internal MR 2234,
internal issue 1673)XR_FB_hand_aim_tracking
,XR_FB_hand_tracking_capsule
,
XR_FB_hand_tracking_mesh
: Fix documentation to specify correctnext
chain
usage.
(internal MR 2229)XR_FB_hand_tracking_capsules
: UpdateXrHandCapsuleFB
and
XrHandTrackingCapsulesStateFB
to use
XR_HAND_TRACKING_CAPSULE_POINT_COUNT_FB
and
XR_HAND_TRACKING_CAPSULE_COUNT_FB
enums when defining arrays so they match
the usual practice for vendor extensions
(internal MR 2216)XR_FB_passthrough_keyboard_hands
: Add
XR_PASSTHROUGH_LAYER_PURPOSE_TRACKED_KEYBOARD_MASKED_HANDS_FB
, update spec
version to 2.
(internal MR 2270)XR_FB_passthrough
: addXrPassthroughBrightnessContrastSaturationFB
, update
spec version to 2
(internal MR 2222)XR_FB_render_model
: Add capability support levels, bump spec version to 2.
(internal MR 2264)XR_FB_space_warp
: Add
XR_COMPOSITION_LAYER_SPACE_WARP_INFO_FRAME_SKIP_BIT_FB
into
XrCompositionLayerSpaceWarpInfoFlagBitsFB
, update spec version to 2.
(internal MR 2193)XR_HTC_vive_focus3_controller_interaction
: Support component path
"/input/squeeze/value", update spec version to 2.
(internal MR 2253)XR_KHR_D3D11_enable
andXR_KHR_D3D12_enable
: Update to describe error
conditions forXR_ERROR_GRAPHICS_DEVICE_INVALID
.
(internal MR 2176,
internal issue 1617)XR_MSFT_spatial_graph_bridge
: Update to revision 2.
(internal MR 2182)
- Add new
- SDK
- Add
org.khronos.openxr.intent.category.IMMERSIVE_HMD
category to intent-
filter forAndroidManifest.xml
, to indicate immersive application
(internal MR 2219) - Common: Fix definitions in
xr_linear.h
so that it can be compiled as C or
C++.
(internal MR 2217) - Fix warnings raised by Clang on various platforms.
(internal MR 2197) - Fix source-generation script and codegen scripts to allow extension of KHR and
EXT enumerations with vendor-specific members.
(internal MR 2240,
internal MR 2243) - Fix warning print statement arguments in header generation/validation script.
(internal MR 2244) - Loader: Adjust Android loader build to use the static C++ runtime, since we do
not expose any C++ interfaces.
(OpenXR-SDK-Source PR 307,
internal issue 1712) - Remove "Draft" status accidentally left on the loader design doc/spec.
(OpenXR-SDK-Source PR 300,
internal issue 1688) - Validation Layer: Functions that start with
xrTryCreate
will receive the same
warnings as functions that start withxrCreate
.
(internal MR 2182) - cmake: Install pkgconfig file in mingw
(OpenXR-SDK-Source PR 308) - hello_xr: Shutdown OpenGL graphics to allow it to be restarted
(internal MR 2241) - hello_xr: remove call to swapbuffers to fix OpenGL frame timing.
(internal MR 2249) - hello_xr: Fix typo in declspec keyword
(OpenXR-SDK-Source PR 302,
internal issue 1691)
- Add
The Android loader can be found on Maven Central, by adding the following line to your Android app's build.gradle dependencies section:
implementation 'org.khronos.openxr:openxr_loader_for_android:1.0.23'
Alternately, the AAR file (plus signature by the spec editor key and associated POM) are attached to this release.
Other release files are signed by Ryan Pavlik's key, key fingerprint F029455EAB70F520FF4A03BD7F534CD56F00321E.
OpenXR SDK (Source) 1.0.22
OpenXR SDK 1.0.22 (2022-01-12)
This release features a number of new extensions, as well as some software
updates and fixes, especially for Android. If you are using the bundled jsoncpp,
this is also a security release as the bundled jsoncpp was upgraded to
incorporate security improvements from upstream.
- Registry
- Add new
XR_FB_render_model
vendor extension.
(internal MR 2117,
internal MR 2169) - Add new
XR_HTC_facial_expression
vendor extension.
(internal MR 2120) - Add new
XR_FB_keyboard_tracking
vendor extension.
(internal MR 2128) - Add new
XR_EXT_uuid
multi-vendor extension.
(internal MR 2152) - Add new
XR_FB_passthrough_keyboard_hands
vendor extension.
(internal MR 2162) - Add new
XR_HTC_vive_focus3_controller_interaction
vendor extension.
(internal MR 2178) - Add new
XR_ALMALENCE_digital_lens_control
vendor extension.
(OpenXR-Docs PR 104,
internal issue 1615) - Correct winding order for
XR_MSFT_hand_tracking_mesh
extension to clockwise
to match runtime behavior.
(internal MR 2151) - Fix typos/naming convention errors in
XR_FB_hand_tracking_capsules
: rename
XR_FB_HAND_TRACKING_CAPSULE_POINT_COUNT
to
XR_HAND_TRACKING_CAPSULE_POINT_COUNT_FB
and
XR_FB_HAND_TRACKING_CAPSULE_COUNT
toXR_HAND_TRACKING_CAPSULE_COUNT_FB
,
providing the old names as compatibility aliases.
(internal MR 1547,
internal issue 1519) - Reserve vendor extensions 208 - 299 for Facebook.
(internal MR 2158) - Reserve extension numbers for anticipated multi-vendor extensions.
(internal MR 2173)
- Add new
- SDK
- Android loader: Update vendored jnipp project, including crash/exception fixes
if an application manually attached or detached a thread.
(OpenXR-SDK-Source PR 286,
OpenXR-SDK-Source PR 285) - Docs: Fixed typo in docs.
(OpenXR-SDK-Source PR 284) - Fix detection of std::filesystem options on GCC 11 and newer.
(OpenXR-SDK-Source PR 276,
OpenXR-SDK-Source issue 260,
internal issue 1571) - Loader: Add
ifdef
guards around contents of Android-specific files so all
platforms may still glob all source files in OpenXR-SDK to build the loader
with a custom build system.
(OpenXR-SDK-Source PR 274) - Loader: Fixed incorrect return value when no broker is present on Android but
runtime defined viaactive_runtime.json
.
(OpenXR-SDK-Source PR 284) - Loader: Added
/system
to the search path on Android as per documentation.
(OpenXR-SDK-Source PR 284) - Loader doc: Use
nativeLibraryDir
(property, part of API) instead of
getNativeLibraryDir()
(function generated by wrapping library)
(OpenXR-SDK-Source PR 278) - Update vendored copy of jsoncpp from 1.8.4 to 1.9.5 for security and other
fixes.
(internal MR 2168,
OpenXR-SDK-Source issue 265,
internal issue 1582) - Update android-jni-wrappers to fix missing include.
(OpenXR-SDK-Source PR 280,
OpenXR-SDK-Source issue 275,
internal issue 1616) - Update jnipp to fix crash on Android if app detaches thread from JVM (e.g. on
shutdown).
(OpenXR-SDK-Source PR 280) - scripts: Populate
ext_name
inHandleData
too, for use by language wrapper
generation scripts.
(internal MR 2184)
- Android loader: Update vendored jnipp project, including crash/exception fixes
The Android loader can be found on Maven Central, by adding the following line to your Android app's build.gradle dependencies section:
implementation 'org.khronos.openxr:openxr_loader_for_android:1.0.22'
Alternately, the AAR file (plus signature by the spec editor key and associated POM) are attached to this release.
Other release files are signed by Ryan Pavlik's key, key fingerprint F029455EAB70F520FF4A03BD7F534CD56F00321E.
This release replaces 1.0.21.
OpenXR SDK (Source) 1.0.21
This release was withdrawn due to a typo noticed after initial publication.
All changes are now listed under 1.0.22.