-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into disable-USE_MIRROR_WINDOW-default
- Loading branch information
Showing
1,123 changed files
with
266,798 additions
and
20,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.azure-pipelines/nuget/NugetTemplate/build/native/OpenXR.Loader.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.azure-pipelines/nuget/NugetTemplate/build/native/OpenXR.Loader.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
# Copyright (c) 2020-2023, The Khronos Group Inc. | ||
# Copyright (c) 2020-2024, The Khronos Group Inc. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
jobs: | ||
- job: check_file_format | ||
displayName: 'Check file formatting' | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
container: khronosgroup/docker-images:openxr-sdk.20230323 | ||
# container: khronosgroup/docker-images@sha256:20edadbaa6cdec4fed7417c24b18dfb4b93eec940fdf1a27b5f97272dec47032 | ||
steps: | ||
- script: ./file_format.sh | ||
displayName: File formatting checks (file_format.sh) | ||
- job: check_file_format | ||
displayName: "Check file formatting" | ||
pool: | ||
vmImage: "ubuntu-latest" | ||
container: khronosgroup/docker-images:openxr-sdk.20240924@sha256:5e6a6f5d72dc4a20d5c33f12550fdd9b6a1206e94d6cf1382e0697a5726c424c | ||
|
||
- script: git diff --patch --exit-code > file_format.patch | ||
displayName: Save changes as diff | ||
- script: echo "The following files need file formatting:"; sed -n -e "s/^diff.* b\///p" file_format.patch | ||
condition: failed() | ||
- task: PublishPipelineArtifact@1 | ||
displayName: Publish diff | ||
condition: failed() | ||
inputs: | ||
path: $(System.DefaultWorkingDirectory)/file_format.patch | ||
artifact: file_format_changes | ||
steps: | ||
- script: ./file_format.sh | ||
displayName: File formatting checks (file_format.sh) | ||
|
||
- script: git diff --patch --exit-code > file_format.patch | ||
displayName: Save changes as diff | ||
- script: echo "The following files need file formatting:"; sed -n -e "s/^diff.* b\///p" file_format.patch | ||
condition: failed() | ||
- task: PublishPipelineArtifact@1 | ||
displayName: Publish diff | ||
condition: failed() | ||
inputs: | ||
path: $(System.DefaultWorkingDirectory)/file_format.patch | ||
artifact: file_format_changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
# Copyright (c) 2019-2023, The Khronos Group Inc. | ||
# Copyright (c) 2019-2024, The Khronos Group Inc. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
jobs: | ||
- job: check_codespell | ||
displayName: "codespell" | ||
pool: | ||
vmImage: "ubuntu-latest" | ||
container: khronosgroup/docker-images:openxr-sdk.20230323 | ||
# container: khronosgroup/docker-images@sha256:20edadbaa6cdec4fed7417c24b18dfb4b93eec940fdf1a27b5f97272dec47032 | ||
container: khronosgroup/docker-images:openxr-sdk.20240924@sha256:5e6a6f5d72dc4a20d5c33f12550fdd9b6a1206e94d6cf1382e0697a5726c424c | ||
|
||
steps: | ||
- checkout: self | ||
lfs: true | ||
|
||
- script: ./checkCodespell | ||
displayName: Run Codespell script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright (c) 2022-2024, The Khronos Group Inc. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Improves the Python editing experience with vscode. | ||
PYTHONPATH=specification/scripts:src/scripts:external/python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.