diff options
| author | 2026-04-13 17:01:47 -0400 | |
|---|---|---|
| committer | 2026-04-13 17:01:47 -0400 | |
| commit | 77b54c35bf9587450cd636e0d7df37e190e28bfb (patch) | |
| tree | a290efdd8b09066847199f3f52a32be70d24ef51 /scripts/shaderc_deps.sh | |
| parent | 20617b9c80cf8d8051ecdb53a2c22f68c012f21b (diff) | |
| download | camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.tar.gz camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.tar.bz2 camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.zip | |
Smaller stuff that went uncommitted
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts/shaderc_deps.sh')
| -rwxr-xr-x | scripts/shaderc_deps.sh | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/scripts/shaderc_deps.sh b/scripts/shaderc_deps.sh index e8f4335..89aaf38 100755 --- a/scripts/shaderc_deps.sh +++ b/scripts/shaderc_deps.sh @@ -1,5 +1,18 @@ #! /usr/bin/env sh + # We need a better way to do this. -git clone https://github.com/KhronosGroup/SPIRV-Tools.git --depth=1 spirv-tools -git clone https://github.com/KhronosGroup/SPIRV-Headers.git --depth=1 spirv-headers -git clone https://github.com/KhronosGroup/glslang.git --depth=1 glslang + +git clone https://github.com/KhronosGroup/SPIRV-Tools.git spirv-tools +cd spirv-tools +git checkout fbe4f3ad913c44fe8700545f8ffe35d1382b7093 +cd ../ + +git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers +cd spirv-headers +git checkout 04f10f650d514df88b76d25e83db360142c7b174 +cd ../ + +git clone https://github.com/KhronosGroup/glslang.git glslang +cd glslang +git checkout f0bd0257c308b9a26562c1a30c4748a0219cc951 +cd ../ |