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