Skip to content

Commit 820278f

Browse files
committed
OpenXR SDK 1.0.33 (2024-01-03)
This release primarily adds new ratified functionality describing the loader interaction with runtimes and API layers. Corresponding definitions are now in the official openxr_loader_negotiation.h generated header, rather than the loader_interfaces.h header previously shipped only with the OpenXR-SDK-Source repository. This change only affects vendors of runtimes and API layers as well as contributors to the OpenXR loader: applications do not directly use this API, the loader uses it on their behalf. A number of other small fixes are also included. - Registry - Extension reservation: Update author ID and reserve extensions for Varjo. (internal MR 3083) - Extension reservation: Reserve 10 extension ids each for ANDROIDX & ANDROIDSYS. (internal MR 3086) - Khronos ratified addition: Specify the existing loader negotiation functions (without modification) in the XML, moving from loader_interfaces.h to a new generated header openxr_loader_negotiation.h. (internal MR 2807, internal issue 1953) - XR_KHR_android_thread_settings: Fix the description of XrAndroidThreadTypeKHR enum values - they were swapped relative to their implicit meaning from their name. (internal MR 3077) - XR_MNDX_egl_enable: Update version to 2 to reflect function pointer type change released in 1.0.29. (OpenXR-Docs PR 159) - SDK - Loader: Fix loader build on Universal Windows Platform: build-system-only change. (Included in SDK hotfix 1.0.32.1.) (internal MR 3071) - Loader: Correctly destroy the LoaderInstance when loader is done. (internal MR 3041) - Remove obsolete loader_interfaces.h header, migrating uses (in loader and layers) to use the newly specified and ratified openxr_loader_negotiation.h, and adjust scripts for the addition of the loader negotiation APIs. (internal MR 2807, internal issue 1953, internal MR 3122) - Misc - Update/correct names. - Ship a .mailmap file in the public repositories, maintained separately from the larger one used in the private monorepo, to correct names/emails and unify contributor identities. - Update Khronos Group copyright dates. GitOrigin-RevId: a561c5898b72f59965790790a28bbc3b7e9bcf13
1 parent e93034a commit 820278f

File tree

305 files changed

+1214
-918
lines changed

Some content is hidden

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

305 files changed

+1214
-918
lines changed

.appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Copyright (c) 2017-2023 The Khronos Group Inc.
1+
# Copyright (c) 2017-2024, The Khronos Group Inc.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
version: 1.0.32.{build}
5+
version: 1.0.33.{build}
66
image: Visual Studio 2017
77

88

.azure-pipelines/nuget/NugetTemplate/OpenXR.Loader.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<!--
4-
Copyright (c) 2020-2023, The Khronos Group Inc.
4+
Copyright (c) 2020-2024, The Khronos Group Inc.
55
SPDX-License-Identifier: CC-BY-4.0
66
-->
77
<metadata>

.azure-pipelines/nuget/NugetTemplate/build/native/OpenXR.Loader.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<!--
3-
Copyright (c) 2020-2023, The Khronos Group Inc.
3+
Copyright (c) 2020-2024, The Khronos Group Inc.
44
SPDX-License-Identifier: CC-BY-4.0
55
-->
66
<PropertyGroup>

.azure-pipelines/nuget/NugetTemplate/build/native/OpenXR.Loader.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project ToolsVersion="4.0"
22
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<!--
4-
Copyright (c) 2020-2023, The Khronos Group Inc.
4+
Copyright (c) 2020-2024, The Khronos Group Inc.
55
SPDX-License-Identifier: CC-BY-4.0
66
-->
77

.azure-pipelines/nuget/stage_nuget.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33
param(
44
[Parameter(Mandatory = $true, HelpMessage = "Path to unzipped openxr_loader_windows OpenXR-SDK release asset")]

.azure-pipelines/openxr-sdk-source.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Main azure-pipelines configuration for the OpenXR-SDK-Sources repo.

.azure-pipelines/openxr-sdk.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Main azure-pipelines configuration for the OpenXR-SDK repo.

.azure-pipelines/shared/build_jobs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
parameters:

.azure-pipelines/shared/build_linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
parameters:

.azure-pipelines/shared/build_mingw.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
parameters:

.azure-pipelines/shared/build_msvc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
parameters:

.azure-pipelines/shared/check_clang_format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
jobs:

.azure-pipelines/shared/check_file_format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020-2023, The Khronos Group Inc.
1+
# Copyright (c) 2020-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33
jobs:
44
- job: check_file_format

.azure-pipelines/shared/codespell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
jobs:

.azure-pipelines/shared/generate_windows_matrix_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2019-2023, The Khronos Group Inc.
2+
# Copyright (c) 2019-2024, The Khronos Group Inc.
33
# SPDX-License-Identifier: Apache-2.0
44

55
from itertools import product

.azure-pipelines/shared/install_vulkan.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
if (-not $env:VULKAN_SDK_VERSION) {

.azure-pipelines/shared/organize_windows_artifacts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2019-2023, The Khronos Group Inc.
2+
# Copyright (c) 2019-2024, The Khronos Group Inc.
33
# SPDX-License-Identifier: Apache-2.0
44

55
from itertools import product

.azure-pipelines/shared/print_windows_artifact_names.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2019-2023, The Khronos Group Inc.
2+
# Copyright (c) 2019-2024, The Khronos Group Inc.
33
# SPDX-License-Identifier: Apache-2.0
44

55
from itertools import product

.azure-pipelines/shared/shared.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
import json

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017-2023, The Khronos Group Inc.
1+
# Copyright (c) 2017-2024, The Khronos Group Inc.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022-2023, The Khronos Group Inc.
1+
# Copyright (c) 2022-2024, The Khronos Group Inc.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

.git-blame-ignore-revs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021-2023, The Khronos Group Inc. Inc.
1+
# Copyright 2021-2024, The Khronos Group Inc. Inc.
22
#
33
# SPDX-License-Identifier: CC-BY-4.0
44

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017-2023, The Khronos Group Inc.
1+
# Copyright (c) 2017-2024, The Khronos Group Inc.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

.github/scripts/generate_windows_matrix_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2019-2023, The Khronos Group Inc.
2+
# Copyright (c) 2019-2024, The Khronos Group Inc.
33
# SPDX-License-Identifier: Apache-2.0
44

55
from itertools import product

.github/scripts/install_vulkan.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023 The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
$ErrorActionPreference = 'Stop'

.github/scripts/organize_windows_artifacts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2019-2023 The Khronos Group Inc.
2+
# Copyright (c) 2019-2024, The Khronos Group Inc.
33
# SPDX-License-Identifier: Apache-2.0
44

55
from pathlib import Path

.github/scripts/shared.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
import json

.github/workflows/check_clang_format_and_codespell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2023, The Khronos Group Inc.
1+
# Copyright (c) 2019-2024, The Khronos Group Inc.
22
# SPDX-License-Identifier: Apache-2.0
33

44
name: Check code formatting and spelling

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017-2023, The Khronos Group Inc.
1+
# Copyright (c) 2017-2024, The Khronos Group Inc.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

.mailmap

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Copyright 2017-2024, The Khronos Group Inc.
2+
#
3+
# SPDX-License-Identifier: CC-BY-4.0
4+
#
5+
# See mailmap docs: https://git-scm.com/docs/gitmailmap
6+
# Please keep in sorted order.
7+
# Generally, only add lines, unless you want to change the spelling
8+
# of your name.
9+
# Test by running git shortlog -s -e
10+
#
11+
# This mailmap is for **public repos** and should only be tested there.
12+
13+
Blake Taylor <[email protected]>
14+
Bryce Hutchings <[email protected]>
15+
16+
17+
Khronos Group Web Services <[email protected]>
18+
Khronos Group Web Services <[email protected]> <[email protected]>
19+
Rylie Pavlik <[email protected]>
20+
21+
22+
23+
24+

.proclamation.json.license

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Copyright (c) 2020 Collabora, Ltd. and the Proclamation contributors
2-
Copyright (c) 2020-2023, The Khronos Group Inc.
2+
Copyright (c) 2020-2024, The Khronos Group Inc.
33

44
SPDX-License-Identifier: CC0-1.0

.reuse/dep5

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

66
Files: changes/conformance/*
@@ -10,11 +10,11 @@ Files: changes/conformance/*
1010
changes/README.md
1111
changes/template.md
1212
HOTFIX
13-
Copyright: 2019-2023, The Khronos Group Inc.
13+
Copyright: 2019-2024, The Khronos Group Inc.
1414
License: CC-BY-4.0
1515

1616
Files: specification/config/copyright-spec.adoc
17-
Copyright: 2014-2023 The Khronos Group Inc
17+
Copyright: 2014-2024, The Khronos Group Inc
1818
License: LicenseRef-KhronosSpecCopyright-WithNormativeWording-v10
1919

2020
Files: src/tests/hello_xr/android_resources/vulkan/mipmap-xxhdpi/ic_helloxr_launcher.png
@@ -27,7 +27,7 @@ Files: src/tests/hello_xr/android_resources/vulkan/mipmap-xxhdpi/ic_helloxr_laun
2727
src/tests/hello_xr/android_resources/opengles/mipmap-xhdpi/ic_helloxr_launcher.png
2828
src/tests/hello_xr/android_resources/opengles/mipmap-hdpi/ic_helloxr_launcher.png
2929
src/tests/hello_xr/android_resources/opengles/mipmap-xxxhdpi/ic_helloxr_launcher.png
30-
Copyright: Copyright (c) 2020-2023, The Khronos Group Inc.
30+
Copyright: Copyright (c) 2020-2024, The Khronos Group Inc.
3131
Copyright (c) 2020, Google
3232
License: Apache-2.0
3333
Comment: Based on a Material Icons asset ("emoji-people") with added text
@@ -86,7 +86,7 @@ Comment: In-line license comments requested, https://gitlab.khronos.org/openxr/o
8686

8787
Files: specification/sources/chapters/extensions/ext/ext_performance_settings.adoc
8888
specification/sources/chapters/extensions/ext/ext_thermal_query.adoc
89-
Copyright: 2017-2023, The Khronos Group Inc.
89+
Copyright: 2017-2024, The Khronos Group Inc.
9090
License: CC-BY-4.0
9191
Comment: In-line license comments requested, https://gitlab.khronos.org/openxr/openxr/-/issues/1419
9292

@@ -95,13 +95,13 @@ Files: src/conformance/platform_specific/android_resources/mipmap-hdpi/*
9595
src/conformance/platform_specific/android_resources/mipmap-xhdpi/*
9696
src/conformance/platform_specific/android_resources/mipmap-xxhdpi/*
9797
src/conformance/platform_specific/android_resources/mipmap-xxxhdpi/*
98-
Copyright: 2020-2023, The Khronos Group Inc.
98+
Copyright: 2020-2024, The Khronos Group Inc.
9999
2020, Google
100100
License: Apache-2.0
101101
Comment: Generated .png versions of an icon, created in Android Studio
102102
based on a Material Icons asset.
103103

104104
Files: specification/scripts/vuidCounts.py
105-
Copyright: 2022-2023, The Khronos Group Inc.
105+
Copyright: 2022-2024, The Khronos Group Inc.
106106
License: Apache-2.0
107107
Comment: File automatically rewritten by VUID assignment.

BUILDING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# How to Build and Run
22

33
<!--
4-
Copyright (c) 2014-2023, The Khronos Group Inc.
4+
Copyright (c) 2014-2024, The Khronos Group Inc.
55
66
SPDX-License-Identifier: CC-BY-4.0
77
-->

CHANGELOG.SDK.md

+52-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog for OpenXR-SDK-Source and OpenXR-SDK Repo
22

33
<!--
4-
Copyright (c) 2019-2023, The Khronos Group Inc.
4+
Copyright (c) 2019-2024, The Khronos Group Inc.
55
66
SPDX-License-Identifier: CC-BY-4.0
77
-->
@@ -10,7 +10,9 @@ Update log for the OpenXR-SDK-Source and OpenXR-SDK repo on GitHub. Updates are
1010
in reverse chronological order starting with the latest public release.
1111

1212
Note that only changes relating to the loader and some of the build changes will
13-
affect the OpenXR-SDK repository.
13+
affect the OpenXR-SDK repository. Changes mentioned in this changelog related to
14+
hello_xr, API layers, and the loader tests do *not* apply to the OpenXR-SDK
15+
repository.
1416

1517
This summarizes the periodic public updates, not individual commits. Updates
1618
on GitHub are generally done as single large patches at the release point,
@@ -19,6 +21,54 @@ along with any public pull requests that have been accepted.
1921
In this repository in particular, since it is primarily software,
2022
pull requests may be integrated as they are accepted even between periodic updates.
2123

24+
## OpenXR SDK 1.0.33 (2024-01-03)
25+
26+
This release primarily adds new ratified functionality describing the loader
27+
interaction with runtimes and API layers. Corresponding definitions are now in
28+
the official `openxr_loader_negotiation.h` generated header, rather than the
29+
`loader_interfaces.h` header previously shipped only with the OpenXR-SDK-Source
30+
repository. This change only affects vendors of runtimes and API layers as well
31+
as contributors to the OpenXR loader: applications do not directly use this API,
32+
the loader uses it on their behalf. A number of other small fixes are also
33+
included.
34+
35+
- Registry
36+
- Extension reservation: Update author ID and reserve extensions for Varjo.
37+
([internal MR 3083](https://gitlab.khronos.org/openxr/openxr/merge_requests/3083))
38+
- Extension reservation: Reserve 10 extension ids each for `ANDROIDX` &
39+
`ANDROIDSYS`.
40+
([internal MR 3086](https://gitlab.khronos.org/openxr/openxr/merge_requests/3086))
41+
- Khronos ratified addition: Specify the existing loader negotiation functions
42+
(without modification) in the XML, moving from `loader_interfaces.h` to a new
43+
generated header `openxr_loader_negotiation.h`.
44+
([internal MR 2807](https://gitlab.khronos.org/openxr/openxr/merge_requests/2807),
45+
[internal issue 1953](https://gitlab.khronos.org/openxr/openxr/issues/1953))
46+
- `XR_KHR_android_thread_settings`: Fix the description of
47+
`XrAndroidThreadTypeKHR` enum values - they were swapped relative to their
48+
implicit meaning from their name.
49+
([internal MR 3077](https://gitlab.khronos.org/openxr/openxr/merge_requests/3077))
50+
- `XR_MNDX_egl_enable`: Update version to 2 to reflect function pointer type
51+
change released in 1.0.29.
52+
([OpenXR-Docs PR 159](https://github.com/KhronosGroup/OpenXR-Docs/pull/159))
53+
- SDK
54+
- Loader: Fix loader build on Universal Windows Platform: build-system-only
55+
change. (Included in SDK hotfix 1.0.32.1.)
56+
([internal MR 3071](https://gitlab.khronos.org/openxr/openxr/merge_requests/3071))
57+
- Loader: Correctly destroy the LoaderInstance when loader is done.
58+
([internal MR 3041](https://gitlab.khronos.org/openxr/openxr/merge_requests/3041))
59+
- Remove obsolete `loader_interfaces.h` header, migrating uses (in loader and
60+
layers) to use the newly specified and ratified `openxr_loader_negotiation.h`,
61+
and adjust scripts for the addition of the loader negotiation APIs.
62+
([internal MR 2807](https://gitlab.khronos.org/openxr/openxr/merge_requests/2807),
63+
[internal issue 1953](https://gitlab.khronos.org/openxr/openxr/issues/1953),
64+
[internal MR 3122](https://gitlab.khronos.org/openxr/openxr/merge_requests/3122))
65+
- Misc
66+
- Update/correct names.
67+
- Ship a `.mailmap` file in the public repositories, maintained separately
68+
from the larger one used in the private monorepo, to correct names/emails
69+
and unify contributor identities.
70+
- Update Khronos Group copyright dates.
71+
2272
## OpenXR SDK 1.0.32 (2023-11-29)
2373

2474
This release contains a number of vendor extensions, plus a new ratified

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017-2023, The Khronos Group Inc.
1+
# Copyright (c) 2017-2024, The Khronos Group Inc.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44
#

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
<!--
3-
Copyright (c) 2014-2023, The Khronos Group Inc.
3+
Copyright (c) 2014-2024, The Khronos Group Inc.
44
55
SPDX-License-Identifier: CC-BY-4.0
66
-->

COPYING.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= COPYING.adoc for the Khronos Group OpenXR projects
22

3-
// Copyright (c) 2020-2023, The Khronos Group Inc.
3+
// Copyright (c) 2020-2024, The Khronos Group Inc.
44
//
55
// SPDX-License-Identifier: CC-BY-4.0
66

HOTFIX

-1
This file was deleted.

LICENSES/LicenseRef-KhronosSpecCopyright-WithNormativeWording-v10.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017-2023, The Khronos Group Inc.
1+
Copyright (c) 2017-2024, The Khronos Group Inc.
22

33
This Specification is protected by copyright laws and contains material
44
proprietary to Khronos.

0 commit comments

Comments
 (0)