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