11 lines
119 B
Bash
11 lines
119 B
Bash
#!/bin/bash
|
|
|
|
rm Shaders.h
|
|
rm *.spv
|
|
|
|
for f in ./* ; do
|
|
glslangValidator -V $f -o $f.spv
|
|
done
|
|
|
|
bin2c -o Shaders.h *.spv
|