Skip to content

Commit dfe3ad6

Browse files
committedSep 26, 2024·
OpenXR SDK 1.1.41 (2024-09-25)
This release features several new vendor extensions, as well as some small improvements and fixes to the software. - Registry - Change: Allow structs that can extend multiple other structs in the RelaxNG schema, as already permitted by the Vulkan schema. (internal MR 2869) - New vendor extension: XR_HTC_body_tracking (internal MR 2549) - New vendor extension: XR_ML_spatial_anchors (internal MR 2803) - New vendor extension: XR_ML_spatial_anchors_storage (internal MR 2804) - New vendor extension: XR_ML_system_notifications (internal MR 2946) - New vendor extension: XR_ML_world_mesh_detection (internal MR 2950) - New vendor extension: XR_ML_view_configuration_depth_range_change (internal MR 3036) - SDK - Fix: Do not enforce overly-strict requirements on structs using *BaseHeader types in the code generation scripts, fixing a build-time warning for the layers. (internal MR 3434) - Improvement: Migrate CMake build system away from using find_package(PythonInterpreter), deprecated since CMake 3.12. Use find_package(Python3 COMPONENTS Interpreter) instead. (OpenXR-SDK-Source PR 486, internal MR 3472) - Validation layer: Improvement: Clean up generate_vuid_database script, used to analyze the validation layer. (internal MR 2895) - ci: Remove now-redundant gradle-wrapper-validation job from GitHub Actions (OpenXR-SDK-Source PR 500) - ci: Add GitHub Action for macOS building (OpenXR-SDK-Source PR 501) - doc: Add command to build OpenXR targets on macOS (OpenXR-SDK-Source PR 501) - hello_xr: Addition: Log Vulkan extensions requested by runtime and by app, visible when running with --verbose. (OpenXR-SDK-Source PR 403) GitOrigin-RevId: 4980d84000eb8b4d88c4fb29877c695526c94ca8
1 parent 2c9b058 commit dfe3ad6

16 files changed

+828
-51
lines changed
 

‎.appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
version: 1.1.40.{build}
5+
version: 1.1.41.{build}
66
image: Visual Studio 2017
77

88

@@ -45,9 +45,9 @@ install:
4545
build_script:
4646
- cmd: >-
4747
call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\%VCVARS%.bat" &&
48-
cmake -GNinja -Bbuild -H. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DPYTHON_EXECUTABLE=C:/Python37-x64/python.exe -DBUILD_ALL_EXTENSIONS=ON &&
48+
cmake -GNinja -Bbuild -H. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DPython3_EXECUTABLE=C:/Python37-x64/python.exe -DBUILD_ALL_EXTENSIONS=ON &&
4949
ninja -C build
5050
- cmd: >-
5151
call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\%VCVARS%.bat" &&
52-
cmake -GNinja -Bbuild -H. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDYNAMIC_LOADER=ON -DPYTHON_EXECUTABLE=C:/Python37-x64/python.exe -DBUILD_ALL_EXTENSIONS=ON &&
52+
cmake -GNinja -Bbuild -H. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDYNAMIC_LOADER=ON -DPython3_EXECUTABLE=C:/Python37-x64/python.exe -DBUILD_ALL_EXTENSIONS=ON &&
5353
ninja -C build

‎.git-blame-ignore-revs

+8
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,11 @@ e774b36cfc7bfc721e97de6c8435fcb14866e6fa
6565

6666
# OpenXR-SDK
6767
db11d03216666f2b574da46a39c4b565dbe90124
68+
69+
## 1.1.40 - Update to clang-format-14
70+
71+
# Khronos GitLab
72+
22ba5c7abe1f43122d1eedebc093008d03aaad03
73+
74+
# OpenXR-CTS
75+
e3ab3214c1307d60642ee939739740f5111bbb54

‎.github/workflows/android.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v4
2727
- name: Get modern CMake and Ninja
28-
uses: "lukka/get-cmake@v3.30.2"
28+
uses: "lukka/get-cmake@v3.30.3"
2929

3030
# Do this before building aar since it affects the version
3131
- name: Touch SNAPSHOT marker file
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- uses: "actions/checkout@v4"
4949
- name: "Get modern CMake and Ninja"
50-
uses: "lukka/get-cmake@v3.30.2"
50+
uses: "lukka/get-cmake@v3.30.3"
5151
- name: "set up JDK 11"
5252
uses: "actions/setup-java@v4"
5353
with:

‎.github/workflows/msvc-build-preset.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
lfs: true
3535

3636
- name: Get modern CMake and Ninja
37-
uses: lukka/get-cmake@v3.30.2
37+
uses: lukka/get-cmake@v3.30.3
3838

3939
- name: Add msbuild to PATH
4040
uses: microsoft/setup-msbuild@v2

‎.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# This mailmap is for **public repos** and should only be tested there.
1212

1313
Blake Taylor <rotaylor@magicleap.com>
14+
Bradley Austin Davis <bdavis@saintandreas.org>
1415
Bryce Hutchings <bryceh@microsoft.com>
1516
Bryce Hutchings <bryceh@microsoft.com> <5100250+brycehutchings@users.noreply.github.com>
1617
Bryce Hutchings <bryceh@microsoft.com> <me@bryce.ws>

‎.reuse/dep5

+10
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,16 @@ Copyright: 2011 by Morten S. Mikkelsen
6363
License: Zlib
6464
Comment: Unmodified, vendored copy of MikkTSpace commit 3e895b4
6565

66+
Files: src/external/basis_universal/*
67+
Copyright: 2019-2021 Binomial LLC
68+
License: Apache-2.0
69+
Comment: Unmodified, vendored subset of basis_universal commit 1.16.4
70+
71+
Files: src/external/basis_universal/zstd/*
72+
Copyright: 2016-2021, Yann Collet, Facebook, Inc.
73+
License: BSD-3-Clause
74+
Comment: Vendored copy of single-file libraries included in the basis_universal repo.
75+
6676
Files: src/external/jnipp/*
6777
Copyright: 2016-2020, Mitchell Dowd
6878
2020, Collabora, Ltd.

‎CHANGELOG.SDK.md

+44
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,50 @@ along with any public pull requests that have been accepted.
2121
In this repository in particular, since it is primarily software,
2222
pull requests may be integrated as they are accepted even between periodic updates.
2323

24+
## OpenXR SDK 1.1.41 (2024-09-25)
25+
26+
This release features several new vendor extensions, as well as some small
27+
improvements and fixes to the software.
28+
29+
- Registry
30+
- Change: Allow structs that can extend multiple other structs in the RelaxNG
31+
schema, as already permitted by the Vulkan schema.
32+
([internal MR 2869](https://gitlab.khronos.org/openxr/openxr/merge_requests/2869))
33+
- New vendor extension: `XR_HTC_body_tracking`
34+
([internal MR 2549](https://gitlab.khronos.org/openxr/openxr/merge_requests/2549))
35+
- New vendor extension: `XR_ML_spatial_anchors`
36+
([internal MR 2803](https://gitlab.khronos.org/openxr/openxr/merge_requests/2803))
37+
- New vendor extension: `XR_ML_spatial_anchors_storage`
38+
([internal MR 2804](https://gitlab.khronos.org/openxr/openxr/merge_requests/2804))
39+
- New vendor extension: `XR_ML_system_notifications`
40+
([internal MR 2946](https://gitlab.khronos.org/openxr/openxr/merge_requests/2946))
41+
- New vendor extension: `XR_ML_world_mesh_detection`
42+
([internal MR 2950](https://gitlab.khronos.org/openxr/openxr/merge_requests/2950))
43+
- New vendor extension: `XR_ML_view_configuration_depth_range_change`
44+
([internal MR 3036](https://gitlab.khronos.org/openxr/openxr/merge_requests/3036))
45+
- SDK
46+
- Fix: Do not enforce overly-strict requirements on structs using `*BaseHeader`
47+
types in the code generation scripts, fixing a build-time warning for the
48+
layers.
49+
([internal MR 3434](https://gitlab.khronos.org/openxr/openxr/merge_requests/3434))
50+
- Improvement: Migrate CMake build system away from using
51+
`find_package(PythonInterpreter)`, deprecated since CMake 3.12. Use
52+
`find_package(Python3 COMPONENTS Interpreter)` instead.
53+
([OpenXR-SDK-Source PR 486](https://github.com/KhronosGroup/OpenXR-SDK-Source/pull/486),
54+
[internal MR 3472](https://gitlab.khronos.org/openxr/openxr/merge_requests/3472))
55+
- Validation layer: Improvement: Clean up `generate_vuid_database` script, used
56+
to analyze the validation layer.
57+
([internal MR 2895](https://gitlab.khronos.org/openxr/openxr/merge_requests/2895))
58+
- ci: Remove now-redundant gradle-wrapper-validation job from GitHub Actions
59+
([OpenXR-SDK-Source PR 500](https://github.com/KhronosGroup/OpenXR-SDK-Source/pull/500))
60+
- ci: Add GitHub Action for macOS building
61+
([OpenXR-SDK-Source PR 501](https://github.com/KhronosGroup/OpenXR-SDK-Source/pull/501))
62+
- doc: Add command to build OpenXR targets on macOS
63+
([OpenXR-SDK-Source PR 501](https://github.com/KhronosGroup/OpenXR-SDK-Source/pull/501))
64+
- hello_xr: Addition: Log Vulkan extensions requested by runtime and by app,
65+
visible when running with `--verbose`.
66+
([OpenXR-SDK-Source PR 403](https://github.com/KhronosGroup/OpenXR-SDK-Source/pull/403))
67+
2468
## OpenXR SDK 1.1.40 (2024-08-22)
2569

2670
This release features a new ratified graphics API binding extension,

‎COPYING.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
This document is shared across a number of OpenXR GitHub projects, as the
88
set of files in those projects is partially overlapping.
9-
(There is a single "source of truth" internal Khronos GitLab repo these
9+
(There is a single "source of truth" internal Khronos GitLab monorepo these
1010
GitHub repositories interact with.)
1111

1212
== Licenses
@@ -17,7 +17,7 @@ https://reuse.software/spec/[REUSE 3.0 specification] with clear copyright
1717
holders and license identifier listed for each file, preferably in each
1818
file.
1919
Where this is not possible, or e.g. when we are using files unmodified from
20-
other open-source projects, license data is listed:
20+
other open source projects, license data is listed:
2121

2222
* in an adjacent file of the same name, with the additional extension
2323
"`.license`"

‎changes/sdk/pr.403.gh.OpenXR-SDK-Source.md

-1
This file was deleted.

‎changes/sdk/pr.486.gh.OpenXR-SDK-Source.md

-1
This file was deleted.

‎changes/sdk/pr.500.gh.OpenXR-SDK-Source.md

-1
This file was deleted.

‎changes/sdk/pr.501.gh.OpenXR-SDK-Source.md

-2
This file was deleted.

‎specification/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ endif
3939
VERSIONS := XR_VERSION_1_0 XR_VERSION_1_1 XR_LOADER_VERSION_1_0
4040
VERSIONOPTIONS := $(foreach version,$(VERSIONS),-feature $(version))
4141

42-
SPECREVISION = 1.1.40
42+
SPECREVISION = 1.1.41
4343
REVISION_COMPONENTS = $(subst ., ,$(SPECREVISION))
4444
MAJORMINORVER = $(word 1,$(REVISION_COMPONENTS)).$(word 2,$(REVISION_COMPONENTS))
4545

0 commit comments

Comments
 (0)
Please sign in to comment.