Skip to content

Commit 8270b15

Browse files
committed
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) - 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) GitOrigin-RevId: f7a0c0f3691f0c7b0a239cb34e41d01042d5a02a
1 parent 435e7f4 commit 8270b15

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+494
-218
lines changed

.appveyor.yml

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

5-
version: 1.0.29.{build}
5+
version: 1.0.30.{build}
66
image: Visual Studio 2017
77

88

.reuse/dep5

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
22
Upstream-Name: OpenXR
33
Upstream-Contact: Ryan Pavlik <openxr-speceditor AT khronos DOT org>
4-
Source: https://khronos.org/registry/OpenXR/
4+
Source: https://registry.khronos.org/OpenXR/
55

66
Files: changes/conformance/*
77
changes/registry/*
@@ -54,8 +54,8 @@ Comment: Unmodified, vendored copy of a subset of the tiny-gltf repo v2.8.9
5454
Files: src/external/d3dx12/*
5555
Copyright: Copyright (c) Microsoft Corporation.
5656
License: MIT
57-
Comment: Unmodified, vendored copy of DirectX-Headers commit da7aedb
58-
of https://github.com/microsoft/DirectX-Headers filtered to just d3dx12 headers
57+
Comment: Unmodified, vendored copy of d3dx12.h from directx-vs-templates commit 86b9c45
58+
This repo includes ifdefs to improve compatibility with older Windows SDK verions.
5959

6060
Files: src/external/mikktspace/*
6161
Copyright: 2011 by Morten S. Mikkelsen

CHANGELOG.SDK.md

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

22+
## OpenXR SDK 1.0.30 (2023-09-20)
23+
24+
This release is primarily a quality improvement release, fixing a range of
25+
issues in the registry and SDK, including fixing a loader bug related to layers,
26+
in addition to a new vendor extension and an updated vendor extension.
27+
28+
- Registry
29+
- Add missing enum tags for enum-sized array struct members.
30+
([internal MR 2731](https://gitlab.khronos.org/openxr/openxr/merge_requests/2731))
31+
- Fix EGL "get proc addr" function pointer typedef.
32+
([internal MR 2939](https://gitlab.khronos.org/openxr/openxr/merge_requests/2939))
33+
- New vendor extension: `XR_YVR_controller_interaction`
34+
([internal MR 2841](https://gitlab.khronos.org/openxr/openxr/merge_requests/2841))
35+
- `XR_BD_controller_interaction`: Add support for G3 devices
36+
([internal MR 2872](https://gitlab.khronos.org/openxr/openxr/merge_requests/2872))
37+
- Fix specification errors highlighted by fixed tooling.
38+
([internal MR 2923](https://gitlab.khronos.org/openxr/openxr/merge_requests/2923))
39+
- SDK
40+
- Add installable manual page for `openxr_runtime_list_json`.
41+
([internal MR 2899](https://gitlab.khronos.org/openxr/openxr/merge_requests/2899))
42+
- Remove unused diagram exports from loader directory.
43+
([internal MR 2907](https://gitlab.khronos.org/openxr/openxr/merge_requests/2907))
44+
- Update URLs in manual pages.
45+
([internal MR 2935](https://gitlab.khronos.org/openxr/openxr/merge_requests/2935))
46+
- Validation Layer: Remove conditional `XR_KHR_headless` support as the extension
47+
is not part of OpenXR 1.0.
48+
([internal MR 2901](https://gitlab.khronos.org/openxr/openxr/merge_requests/2901))
49+
- build system: Add CTest support for running the loader test.
50+
([internal MR 2289](https://gitlab.khronos.org/openxr/openxr/merge_requests/2289),
51+
[OpenXR-SDK-Source issue 309](https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/309),
52+
[internal issue 1733](https://gitlab.khronos.org/openxr/openxr/issues/1733))
53+
- hello_xr: Clean up how we specify the default graphics plugin on Android.
54+
([internal MR 2917](https://gitlab.khronos.org/openxr/openxr/merge_requests/2917))
55+
- list_json: Add missing return statement for exit code.
56+
([internal MR 2936](https://gitlab.khronos.org/openxr/openxr/merge_requests/2936))
57+
- loader: fix for implicit/explicit api layer loading logic
58+
([OpenXR-SDK-Source PR 421](https://github.com/KhronosGroup/OpenXR-SDK-Source/pull/421),
59+
[internal issue 2079](https://gitlab.khronos.org/openxr/openxr/issues/2079))
60+
2261
## OpenXR SDK 1.0.29 (2023-08-25)
2362

2463
This release contains several fixes to the specification registry, improvements

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ cmake_minimum_required(VERSION 3.0)
2525
project(OPENXR)
2626

2727
find_package(PythonInterp 3)
28+
include(CTest)
2829

2930
# Enable IDE GUI folders. "Helper targets" that don't have interesting source code should set their FOLDER property to this
3031
set_property(GLOBAL PROPERTY USE_FOLDERS ON)

maintainer-scripts/common.sh

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ getSDKSourceFilenames() {
187187
maintainer-scripts/build-and-publish-aar-snapshot.sh \
188188
maintainer-scripts/publish-aar \
189189
specification/.gitignore \
190+
specification/config/attribs.adoc \
190191
specification/registry/*.xml \
191192
specification/scripts \
192193
specification/loader \

specification/Makefile

+4-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ifneq (,$(strip $(VERY_STRICT)))
3232
ASCIIDOC := $(ASCIIDOC) --failure-level WARN
3333
endif
3434

35-
SPECREVISION = 1.0.29
35+
SPECREVISION = 1.0.30
3636
REVISION_COMPONENTS = $(subst ., ,$(SPECREVISION))
3737
MAJORMINORVER = $(word 1,$(REVISION_COMPONENTS)).$(word 2,$(REVISION_COMPONENTS))
3838

@@ -57,7 +57,7 @@ PYAPIMAP := $(GENDIR)/apimap.py
5757
RBAPIMAP := $(GENDIR)/apimap.rb
5858
METADIR := $(GENDIR)/meta
5959

60-
VK_REF_PAGE_ROOT := https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html
60+
VK_REF_PAGE_ROOT := https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/
6161

6262
MAKE_RELATIVE = $(patsubst $(CURDIR)/%,%,$(1))
6363

@@ -406,7 +406,7 @@ MANSOURCES = $(CORESOURCES) $(VENSOURCES) $(KHRSOURCES)
406406
MANGENERATED = $(wildcard $(REFPATH)/*)
407407
MANHTML = $(MANSOURCES:$(REFPATH)/%.txt=$(MANHTMLDIR)/%.html)
408408
MANDEPS = $(GENINCLUDE) $(GENDEPENDS)
409-
HTML_SPEC_RELATIVE ?= ../../$(SPEC_FILENAME_STEM).html
409+
HTML_SPEC_RELATIVE ?= ../../html/$(SPEC_FILENAME_STEM).html
410410

411411
# Asciidoctor options to build refpages
412412
#
@@ -421,8 +421,7 @@ ADOCREFOPTS = -a stylesheet=khronos.css \
421421
-a refprefix='refpage.' \
422422
-a isrefpage \
423423
-a html_spec_relative='$(HTML_SPEC_RELATIVE)' \
424-
-a imagesdir=$(CURDIR)/sources \
425-
-a vkRefPageRoot='$(VK_REF_PAGE_ROOT)'
424+
-a imagesdir=$(CURDIR)/sources
426425

427426
# Pure makefile lowercase function, generated by a script.
428427
make_lower = $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F,f,$(subst G,g,$(subst H,h,$(subst I,i,$(subst J,j,$(subst K,k,$(subst L,l,$(subst M,m,$(subst N,n,$(subst O,o,$(subst P,p,$(subst Q,q,$(subst R,r,$(subst S,s,$(subst T,t,$(subst U,u,$(subst V,v,$(subst W,w,$(subst X,x,$(subst Y,y,$(subst Z,z,$(1)))))))))))))))))))))))))))

specification/config/attribs.adoc

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
// Copyright (c) 2015-2023, The Khronos Group Inc.
2+
//
3+
// SPDX-License-Identifier: CC-BY-4.0
4+
5+
// Various special / math symbols, matching LaTeX names.
6+
// The pass:[+ ] notation avoids asciidoctor EOL treatment of the attribute.
7+
8+
// Special symbols - not used in [eq] spans
9+
:sym1: ✓
10+
:sym2: †
11+
:reg: ®
12+
:trade: ™
13+
14+
// Math operators and logic symbols
15+
:times: ×
16+
:cdot: ⋅
17+
:plus: pass:[+ ]
18+
:geq: ≥
19+
:leq: ≤
20+
:neq: ≠
21+
:leftarrow: ←
22+
:uparrow: ↑
23+
:rightarrow: →
24+
:downarrow: ↓
25+
:elem: ∈
26+
:lnot: ¬
27+
:land: ∧
28+
:lor: ∨
29+
:oplus: ⊕
30+
:lceil: ⌈
31+
:rceil: ⌉
32+
:lfloor: ⌊
33+
:rfloor: ⌋
34+
:vert: |
35+
:partial: ∂
36+
:onehalf: ½
37+
:onequarter: ¼
38+
:threequarters: ¾
39+
:ldots: …
40+
:forall: ∀
41+
:sqrt: √
42+
:inf: ∞
43+
:plusmn: ±
44+
45+
// Greek letters
46+
:alpha: α
47+
:beta: β
48+
:gamma: γ
49+
:DeltaUpper: Δ
50+
:delta: δ
51+
:epsilon: ε
52+
:eta: η
53+
:theta: θ
54+
:lambda: λ
55+
:pi: π
56+
:rho: ρ
57+
:sigma: σ
58+
:tau: τ
59+
:phi: ϕ
60+
61+
// Word break opportunity tag for HTML
62+
ifdef::backend-html5[]
63+
:wbro: pass:[<wbr>]
64+
endif::backend-html5[]
65+
ifndef::backend-html5[]
66+
:wbro:
67+
endif::backend-html5[]
68+
69+
// Placeholders for synchronization block text
70+
:externsynctitle: Thread Safety
71+
:externsyncprefix: Access to
72+
73+
// next chain link to avoid broken links in ref pages
74+
// This section is not in a ref page so cross-file-links is not the right attribute to check.
75+
ifdef::doctype-manpage[]
76+
:uri-next-chain: {html_spec_relative}#valid-usage-for-structure-pointer-chains
77+
endif::doctype-manpage[]
78+
ifndef::doctype-manpage[]
79+
:uri-next-chain: #valid-usage-for-structure-pointer-chains
80+
endif::doctype-manpage[]
81+
82+
// URIs used in the spec:
83+
// If it's in the main spec and extracted to the ref pages, put it here.
84+
85+
// OpenXR URIs
86+
:uri-openxr-registry-root: https://registry.khronos.org/OpenXR
87+
:uri-openxr-ratified-spec: {uri-openxr-registry-root}/specs/1.0-khr/html/xrspec.html
88+
:uri-github-openxr-docs: https://github.com/KhronosGroup/OpenXR-Docs
89+
90+
// glTF URIs
91+
:uri-gltf2: https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html
92+
:uri-gltf2-basisu: https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_texture_basisu
93+
94+
// Vulkan URIs
95+
:uri-vk-ref-page-root: https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html
96+
:uri-vkCreateInstance: {uri-vk-ref-page-root}/vkCreateInstance.html
97+
:uri-VkInstanceCreateInfo: {uri-vk-ref-page-root}/VkInstanceCreateInfo.html
98+
:uri-VkAllocationCallbacks: {uri-vk-ref-page-root}/VkAllocationCallbacks.html
99+
:uri-vkCreateDevice: {uri-vk-ref-page-root}/vkCreateDevice.html
100+
:uri-VkDeviceCreateInfo: {uri-vk-ref-page-root}/VkDeviceCreateInfo.html
101+
:uri-VkAllocationCallbacks: {uri-vk-ref-page-root}/VkAllocationCallbacks.html

0 commit comments

Comments
 (0)