summaryrefslogtreecommitdiff
path: root/scripts/shaderc_deps.sh
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2026-04-13 17:01:47 -0400
committerAndrew Opalach <andrew@akon.city> 2026-04-13 17:01:47 -0400
commit77b54c35bf9587450cd636e0d7df37e190e28bfb (patch)
treea290efdd8b09066847199f3f52a32be70d24ef51 /scripts/shaderc_deps.sh
parent20617b9c80cf8d8051ecdb53a2c22f68c012f21b (diff)
downloadcamu-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-xscripts/shaderc_deps.sh19
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 ../