summaryrefslogtreecommitdiffstats
path: root/src/extras/shaders/makeinc_hlsl.sh
blob: a5b128677ecfa4d3110b1a6ba5879f63f14c7b0a (plain) (blame)
1
2
3
4
5
6
#!sh
cd obj
for i in *cso; do
	(echo -n 'static '
	xxd -i $i | grep -v '_len = ') > ${i%cso}inc
done