texstretch/textoc.sh

15 lines
305 B
Bash
Raw Permalink Normal View History

2024-07-22 23:40:13 +00:00
#!/bin/sh
if [ $# -lt 1 ]
then
2024-07-23 00:24:54 +00:00
echo "You must pass in the texture! It should be 16x16 lol"
2024-07-22 23:40:13 +00:00
exit 1
fi
convert $1 -compress none $1.ppm
2024-07-23 00:24:54 +00:00
echo "int mytex_width = 16, mytex_height = 16;\nuint8_t mytex[] = {\n" > texture.h
cat $1.ppm | sed 1,3d | sed -e 's/ /, /g' >> texture.h
echo "};" >> texture.h