blob: c9c793f1083ad3ab48db8884e7429628a532768a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /usr/bin/env sh
# We need a better way to do this.
# https://github.com/google/shaderc/blob/known-good/known_good.json
git clone https://github.com/KhronosGroup/SPIRV-Tools.git spirv-tools
cd spirv-tools
git checkout c1cb30bb04e2bf911755a40df1242cc6e3d83e26
cd ../
git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers
cd spirv-headers
git checkout ad9184e76a66b1001c29db9b0a3e87f646c64de0
cd ../
git clone https://github.com/KhronosGroup/glslang.git glslang
cd glslang
git checkout 5ed4003a18a10a9d1bd7e43aaf1664499abffa83
cd ../
|