1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 01:38:41 +00:00
re3/src/extras/shaders/makeinc_hlsl.sh

7 lines
101 B
Bash
Raw Permalink Normal View History

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