summaryrefslogtreecommitdiffstats
path: root/src/demos/es2/perftst/data
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/es2/perftst/data')
-rw-r--r--src/demos/es2/perftst/data/bob2.gifbin0 -> 23146 bytes
-rw-r--r--src/demos/es2/perftst/data/gif2tgas.sh28
2 files changed, 28 insertions, 0 deletions
diff --git a/src/demos/es2/perftst/data/bob2.gif b/src/demos/es2/perftst/data/bob2.gif
new file mode 100644
index 0000000..2faba51
--- /dev/null
+++ b/src/demos/es2/perftst/data/bob2.gif
Binary files differ
diff --git a/src/demos/es2/perftst/data/gif2tgas.sh b/src/demos/es2/perftst/data/gif2tgas.sh
new file mode 100644
index 0000000..2fd184b
--- /dev/null
+++ b/src/demos/es2/perftst/data/gif2tgas.sh
@@ -0,0 +1,28 @@
+#! /bin/sh
+
+rm -rf tmp
+mkdir -p tmp
+
+function gif2tga()
+{
+ bname=$1
+ shift
+ images=$1
+ shift
+ xysize=$1
+ shift
+
+ i=1 ;
+ while [ $i -le $images ] ; do
+ giftopnm -image $i $bname.gif > tmp/$bname.$i.pnm
+ pamscale -xsize=$xysize -ysize=$xysize tmp/$bname.$i.pnm > tmp/$bname.$xysize"x"$xysize.$i.pam
+ pamtotga -rgb -norle tmp/$bname.$xysize"x"$xysize.$i.pam > $bname.$xysize"x"$xysize.$i.tga
+ let i=$i+1
+ done
+}
+
+gif2tga bob2 33 64
+gif2tga bob2 33 128
+gif2tga bob2 33 256
+gif2tga bob2 33 512
+