1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-03-26 16:55:07 +00:00
re3/src/extras/shaders/makeinc.sh

6 lines
94 B
Bash
Raw Normal View History

2020-08-11 16:39:53 +00:00
#!sh
for i in *cso; do
(echo -n 'static '
xxd -i $i | grep -v '_len = ') > ${i%cso}inc
done