parent
a7392df682
commit
2aabc8b26b
@ -0,0 +1,40 @@
|
||||
/*
|
||||
* fimg-core.c
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include "string.h"
|
||||
|
||||
#include "../floatimg.h"
|
||||
|
||||
extern int verbosity; /* must be declared around main() */
|
||||
|
||||
/* ---------------------------------------------------------------- */
|
||||
int fimg_images_compatible(FloatImg *a, FloatImg *b)
|
||||
{
|
||||
#if DEBUG_LEVEL
|
||||
fprintf(stderr, ">>> %s ( %p %p )\n", __func__, a, b);
|
||||
#endif
|
||||
|
||||
if (a->type != b->type) {
|
||||
if (verbosity) fprintf(stderr, "%p %p != type\n", a, b);
|
||||
return -10;
|
||||
}
|
||||
|
||||
if (a->width != b->width) {
|
||||
if (verbosity) fprintf(stderr, "%p %p != width\n", a, b);
|
||||
return -11;
|
||||
}
|
||||
|
||||
if (a->height != b->height) {
|
||||
if (verbosity) fprintf(stderr, "%p %p != height\n", a, b);
|
||||
return -12;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
/* ---------------------------------------------------------------- */
|
Loading…
Reference in new issue