Compare commits

...

2 Commits

Author SHA1 Message Date
tth
ba28fb9e80 debug function added 2020-06-11 15:57:12 +02:00
tth
baddd6dedd more testing 2020-06-11 15:56:32 +02:00
4 changed files with 19 additions and 3 deletions

View File

@ -3,7 +3,7 @@
* ugly code from tTh
*/
#define FIMG_VERSION 100
#define FIMG_VERSION 101
/*
* in memory descriptor
@ -58,6 +58,7 @@ int fimg_type_is_valid(int type);
int fimg_print_version(int k);
void fimg_print_sizeof(void);
void fimg_printhead(FloatImg *h);
int fimg_describe(FloatImg *head, char *txt);
char *fimg_str_type(int type);

View File

@ -48,6 +48,12 @@ if (51 == k) {
return 0;
}
/* --------------------------------------------------------------------- */
void fimg_print_sizeof(void)
{
fprintf(stderr, " sz FloatImg = %lu\n", sizeof(FloatImg));
fprintf(stderr, " sz filehead = %lu\n", sizeof(FimgFileHead));
}
/* --------------------------------------------------------------------- */
void fimg_printhead(FloatImg *h)
{
printf("%5d %5d %2d %p %p %p %p\n", h->width, h->height, h->type,

View File

@ -266,7 +266,10 @@ while ((opt = getopt(argc, argv, "gn:v")) != -1) {
}
}
if (verbosity) fimg_print_version(0);
if (verbosity) {
fimg_print_version(1);
fimg_print_sizeof();
}
// foo = essai_normalize();
// fprintf(stderr, "retour essai normalize -> %d\n", foo);

View File

@ -17,7 +17,13 @@ echo "=== " $0 " ==="
./fimgfx -v rot90 $TMPF bar.fimg
}
# -----------------------------------------------------
function essai_drand48
{
./mkfimg -v -t drand48 $TMPF 800 600
./fimgstats -vv $TMPF
}
# -----------------------------------------------------
essai_rot90
essai_drand48
# -----------------------------------------------------