Skip to content

Commit 76c144d

Browse files
committed
OpenXR SDK 1.0.8 (2020-03-27)
Patch release for the 1.0 series. - Registry - XR_EXTX_overlay: upgrade overlay bit names to match the convention, and increase extension version number. This is a SOURCE-INCOMPATIBLE CHANGE to a provisional multi-vendor extension. (internal MR 1697, internal issue 1318, internal issue 42, internal MR 171) - Introduce XR_EXT_eye_gaze_interaction extension for eye gaze interaction profile. (internal MR 1556) - Add SPDX license identifier tag to registry schema. (internal MR 1686) - Add missing error codes to xrCreateActionSet, xrCreateAction, and xrGetInputSourceLocalizedName. (internal MR 1698) - SDK - Add SPDX license identifier tags to nearly all (code) files, including generated files. (internal MR 1686) - Fix build system behavior with MSVC building in Release mode: only attempt to copy PDB files if they exist. (internal MR 1701)
1 parent e9d6121 commit 76c144d

File tree

128 files changed

+393
-32
lines changed

Some content is hidden

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

128 files changed

+393
-32
lines changed

CHANGELOG.SDK.md

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,34 @@ along with any public pull requests that have been accepted.
1313
In this repository in particular, since it is primarily software,
1414
pull requests may be integrated as they are accepted even between periodic updates.
1515

16+
## OpenXR SDK 1.0.8 (2020-03-27)
17+
18+
Patch release for the 1.0 series.
19+
20+
- Registry
21+
- `XR_EXTX_overlay`: upgrade overlay bit names to match the convention, and
22+
increase extension version number. This is a **source-incompatible change** to
23+
a provisional multi-vendor extension.
24+
([internal MR 1697](https://gitlab.khronos.org/openxr/openxr/merge_requests/1697),
25+
[internal issue 1318](https://gitlab.khronos.org/openxr/openxr/issues/1318),
26+
[internal issue 42](https://gitlab.khronos.org/openxr/openxr/issues/42),
27+
[internal MR 171](https://gitlab.khronos.org/openxr/openxr/merge_requests/171))
28+
- Introduce `XR_EXT_eye_gaze_interaction` extension for eye gaze interaction
29+
profile.
30+
([internal MR 1556](https://gitlab.khronos.org/openxr/openxr/merge_requests/1556))
31+
- Add SPDX license identifier tag to registry schema.
32+
([internal MR 1686](https://gitlab.khronos.org/openxr/openxr/merge_requests/1686))
33+
- Add missing error codes to `xrCreateActionSet`, `xrCreateAction`, and
34+
`xrGetInputSourceLocalizedName`.
35+
([internal MR 1698](https://gitlab.khronos.org/openxr/openxr/merge_requests/1698))
36+
- SDK
37+
- Add SPDX license identifier tags to nearly all (code) files, including
38+
generated files.
39+
([internal MR 1686](https://gitlab.khronos.org/openxr/openxr/merge_requests/1686))
40+
- Fix build system behavior with MSVC building in Release mode: only attempt
41+
to copy PDB files if they exist.
42+
([internal MR 1701](https://gitlab.khronos.org/openxr/openxr/merge_requests/1701))
43+
1644
## OpenXR SDK 1.0.7 (2020-03-20)
1745

1846
Patch release for the 1.0 series.
@@ -37,9 +65,9 @@ changed somewhat.
3765
([internal MR 1665](https://gitlab.khronos.org/openxr/openxr/merge_requests/1665))
3866
- SDK
3967
- loader: Add linker export map/version script to avoid exporting implementation
40-
symbols from C++ on non-MSVC platforms. ([internal MR
41-
1641](https://gitlab.khronos.org/openxr/openxr/merge_requests/1641), [OpenXR-
42-
SDK-Source/#159](https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/159))
68+
symbols from C++ on non-MSVC platforms.
69+
([internal MR 1641](https://gitlab.khronos.org/openxr/openxr/merge_requests/1641),
70+
[OpenXR-SDK-Source/#159](https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/159))
4371
- Add tracking and destruction of debug messengers in the loader.
4472
([internal MR 1668](https://gitlab.khronos.org/openxr/openxr/merge_requests/1668),
4573
[OpenXR-SDK-Source/#29](https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/29),

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Copyright (c) 2017-2020 The Khronos Group Inc.
22
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
35
# Licensed under the Apache License, Version 2.0 (the "License");
46
# you may not use this file except in compliance with the License.
57
# You may obtain a copy of the License at

changes/specification/README.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

changes/template.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
{%- endmacro -%}
2424
{% macro format_refs(refs) -%}
2525
{% if (refs | length) > 0 %}
26-
{%- set comma = joiner(", ") -%}
26+
{%- set comma = joiner(",\n") -%}
2727
{% for ref in refs -%}
2828
{{comma()}}{{format_ref(ref)}}
2929
{%- endfor %}
@@ -34,7 +34,8 @@
3434
{%- for section in sections %}
3535
- {{ section.name }}
3636
{%- for fragment in section.fragments %}
37-
- {% set rawtext %}{{ fragment.text }} ({{format_refs(fragment.refs)}}){% endset %}{{ rawtext | wordwrap | indent }}
37+
- {{ fragment.text | wordwrap | indent }}
38+
({{ format_refs(fragment.refs) | indent }})
3839
{%- else %}
3940
- No significant changes
4041
{%- endfor -%}

checkCodespell

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#
33
# Copyright (c) 2019-2020 The Khronos Group Inc.
44
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
#
57
# Licensed under the Apache License, Version 2.0 (the "License");
68
# you may not use this file except in compliance with the License.
79
# You may obtain a copy of the License at

external/include/GL/gl_format.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ LICENSE
1414
1515
Copyright (c) 2016 Oculus VR, LLC.
1616
17+
SPDX-License-Identifier: Apache-2.0
18+
1719
Licensed under the Apache License, Version 2.0 (the "License");
1820
you may not use this file except in compliance with the License.
1921
You may obtain a copy of the License at

external/include/utils/algebra.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ LICENSE
1414
1515
Copyright (c) 2016 Oculus VR, LLC.
1616
17+
SPDX-License-Identifier: Apache-2.0
18+
1719
Licensed under the Apache License, Version 2.0 (the "License");
1820
you may not use this file except in compliance with the License.
1921
You may obtain a copy of the License at

external/include/utils/nanoseconds.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ LICENSE
1414
1515
Copyright (c) 2016 Oculus VR, LLC.
1616
17+
SPDX-License-Identifier: Apache-2.0
18+
1719
Licensed under the Apache License, Version 2.0 (the "License");
1820
you may not use this file except in compliance with the License.
1921
You may obtain a copy of the License at

external/include/utils/sysinfo.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ LICENSE
1414
1515
Copyright (c) 2016 Oculus VR, LLC.
1616
17+
SPDX-License-Identifier: Apache-2.0
18+
1719
Licensed under the Apache License, Version 2.0 (the "License");
1820
you may not use this file except in compliance with the License.
1921
You may obtain a copy of the License at

external/include/utils/threading.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ LICENSE
1414
1515
Copyright (c) 2016 Oculus VR, LLC.
1616
17+
SPDX-License-Identifier: Apache-2.0
18+
1719
Licensed under the Apache License, Version 2.0 (the "License");
1820
you may not use this file except in compliance with the License.
1921
You may obtain a copy of the License at

0 commit comments

Comments
 (0)