2017-12-05 09:25:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "Building spirv-cross"
|
|
|
|
make -j$(nproc)
|
|
|
|
|
2017-12-12 12:28:15 +00:00
|
|
|
export PATH="./external/glslang-build/StandAlone:./external/spirv-tools-build/tools:.:$PATH"
|
2017-12-05 09:25:04 +00:00
|
|
|
echo "Using glslangValidation in: $(which glslangValidator)."
|
|
|
|
echo "Using spirv-opt in: $(which spirv-opt)."
|
|
|
|
|
2017-12-11 12:55:26 +00:00
|
|
|
./test_shaders.py shaders || exit 1
|
|
|
|
./test_shaders.py shaders --opt || exit 1
|
|
|
|
./test_shaders.py shaders-msl --msl || exit 1
|
|
|
|
./test_shaders.py shaders-msl --msl --opt || exit 1
|
2017-12-26 23:40:46 +00:00
|
|
|
./test_shaders.py shaders-msl-no-opt --msl || exit 1
|
2017-12-11 12:55:26 +00:00
|
|
|
./test_shaders.py shaders-hlsl --hlsl || exit 1
|
|
|
|
./test_shaders.py shaders-hlsl --hlsl --opt || exit 1
|
2017-12-06 09:25:30 +00:00
|
|
|
|