-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Downstream Vulkan-Headers 1.3.278
- Loading branch information
Showing
44 changed files
with
2,544 additions
and
1,368 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
# ~~~ | ||
# Copyright 2023 LunarG, Inc. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# ~~~ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 3 |
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,19 @@ | ||
<!-- Please note when contributing what files this repository actually is responsible for. | ||
VulkanSC-Headers exists as a publishing mechanism for headers and related material sourced from multiple other repositories. If you have a problem with that material, it should *not* be reported here, but in the appropriate repository: | ||
This repository is responsible for the following files | ||
* BUILD.gn | ||
* BUILD.md | ||
* cmake/* | ||
* CMakeLists.txt | ||
* tests/* | ||
* CODE_OF_CONDUCT.md | ||
* LICENSE.txt | ||
* README.md | ||
* Non-API headers | ||
* include/vulkan/vk_icd.h | ||
* include/vulkan/vk_layer.h | ||
--> |
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,66 @@ | ||
# Copyright 2022-2023 LunarG, Inc. | ||
# Copyright 2023-2024 RasterGrid Kft. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: ci | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- main | ||
- sc_main | ||
|
||
env: | ||
CMAKE_GENERATOR: Ninja | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
cmake: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, windows-latest, macos-latest ] | ||
cmake-version: [ '3.15', 'latest'] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: lukka/get-cmake@latest | ||
with: | ||
cmakeVersion: ${{ matrix.cmake-version }} | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
- run: cmake -S . -B build -D BUILD_TESTS=ON -G Ninja -DVULKANSC=ON | ||
- run: cmake --build build | ||
- run: cmake --install build --prefix ${GITHUB_WORKSPACE}/build/install | ||
- run: ctest --output-on-failure | ||
working-directory: build | ||
|
||
cmake-combined-headers: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, windows-latest, macos-latest ] | ||
cmake-version: [ '3.15', 'latest'] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: lukka/get-cmake@latest | ||
with: | ||
cmakeVersion: ${{ matrix.cmake-version }} | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
- run: cmake -S . -B build -D BUILD_TESTS=ON -G Ninja -DVULKANSC=ON -DGEN_VULKANSC_COMBINED=ON | ||
- run: cmake --build build | ||
- run: cmake --install build --prefix ${GITHUB_WORKSPACE}/build/install | ||
- run: ctest --output-on-failure | ||
working-directory: build | ||
|
||
reuse: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: REUSE Compliance Check | ||
uses: fsfe/reuse-action@v2 |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: VulkanSC-Headers | ||
Source: https://github.com/KhronosGroup/VulkanSC-Headers | ||
|
||
Files: json/vk.json json/vkppc.json | ||
Copyright: 2022-2024 The Khronos Group Inc. | ||
License: Apache-2.0 | ||
|
||
Files: registry/validusage.json | ||
Copyright: 2018-2024 The Khronos Group Inc. | ||
License: Apache-2.0 | ||
|
||
Files: .github/ISSUE_TEMPLATE/bug_report.md .github/pull_request_template.md | ||
Copyright: 2022-2024 The Khronos Group Inc. | ||
License: Apache-2.0 |
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.