-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #851 from billhollings/master
Update to Vulkan SDK 1.2.135 library dependencies.
- Loading branch information
Showing
14 changed files
with
2,468 additions
and
2,409 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
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
4,744 changes: 2,380 additions & 2,364 deletions
4,744
ExternalDependencies.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1 +1 @@ | ||
9b3c5e12be12c55533f3bd3ab9cc617ec0f393d8 | ||
e58e8d5dbe03ea2cc755dbaf43ffefa1b8d77bef |
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 +1 @@ | ||
4792a6854238ba3f6d10b8c7fcd11c102cae4ca6 | ||
7844b9b4e180612c7ca35bcb07ce7f86610b22c4 |
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 +1 @@ | ||
9f72cf123c673e47679bb72caa06a17d7b0258dd | ||
036541ca8f65333bf911b3957afa2c49f83fa0cd |
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 +1 @@ | ||
4fc7a33910fb8e40b970d160e1b38ab3f67fe0f3 | ||
e157435c1e777aa1052f446dafed162b4a722e03 |
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,29 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright (c) 2016-2020 The Brenwill Workshop Ltd. | ||
# | ||
# packagePregenSpirvToolsHeaders - Packages Spirv-Tools headers to simplify building glslang | ||
# | ||
# macOS usage: ./packagePregenSpirvToolsHeaders | ||
# | ||
|
||
set -o errexit | ||
|
||
|
||
# ----------------- Main ------------------- | ||
|
||
EXT_DIR=../External | ||
SPV_TLS_BLD_DIR="${EXT_DIR}/glslang/External/spirv-tools/build" | ||
TPLT_DIR=../Templates/spirv-tools | ||
TPLT_BLD_DIR="${TPLT_DIR}/build" | ||
|
||
rm -rf "${TPLT_BLD_DIR}" | ||
mkdir -p "${TPLT_BLD_DIR}" | ||
cp -a "${SPV_TLS_BLD_DIR}/"*.h "${SPV_TLS_BLD_DIR}/"*.inc "${TPLT_BLD_DIR}" | ||
|
||
cd "${TPLT_DIR}" | ||
rm -f build.zip | ||
zip -qr build.zip build | ||
rm -rf build/ | ||
cd - > /dev/null | ||
|
Binary file not shown.