Compare commits

..

No commits in common. "e3347cb77518b84c606e2327107f1d840db4982e" and "4f41ae399b28ec3d0cb383170ae4082158a4a197" have entirely different histories.

3 changed files with 10 additions and 32 deletions

View File

@ -15,8 +15,6 @@
* fait le meme genre de truc, mais en bien mieux... * fait le meme genre de truc, mais en bien mieux...
* *
*/ */
/* Private variables */
static Image_Desc *S, *D; static Image_Desc *S, *D;
static int seuil; static int seuil;
static int level, maxlevel; static int level, maxlevel;
@ -140,4 +138,14 @@ dest->modified = 1;
return FUNC_IS_ALPHA; return FUNC_IS_ALPHA;
} }
/*::------------------------------------------------------------------::*/ /*::------------------------------------------------------------------::*/
int
Image_call_recursion(Image_Desc *image, Image_Desc *dest, int param)
{
int foo;
fprintf(stderr, "XXX %s is obsolete XXX\n", __func__);
foo = Image_call_recursion_0(image, dest, param);
return foo;
}
/*::------------------------------------------------------------------::*/ /*::------------------------------------------------------------------::*/

View File

@ -1,2 +0,0 @@
this directory is for temporary files made from tests.

View File

@ -1,28 +0,0 @@
#!/bin/bash
set -e
source="dauphine2.tga"
if [ $# -eq 2 ] ; then
source="$1"
fi
identify $source ; echo
rm -f frames/R*.tga
maxidx=250
for idx in $(seq 0 4 $maxidx)
do
dst=$(printf "frames/R%03d.tga" $idx)
coef=$(( $maxidx - $idx ))
echo "======> "$dst " coef " $coef
../Tools/tga_effects $source recurse $dst $coef
done
convert -delay 10 frames/R*.tga recurse.gif
wc -c recurse.gif