This commit is contained in:
2020-11-03 00:00:09 +01:00
parent b43a62db68
commit f9a09871bf
3 changed files with 17 additions and 4 deletions

View File

@@ -11,7 +11,10 @@
#include "crapulator.h"
/* -------------------------------------------------------------- */
/*
* This is the main filter engine
* used both for input and output
*/
int crapulator(FloatImg *image, int idFx, float fval)
{
int retval, foo;
@@ -25,10 +28,12 @@ fprintf(stderr, ">>> %s ( %p %d %f )\n", __func__,
image, idFx, fval);
#endif
retval = 0;
if (666==count) {
flag_debug = 1;
fprintf(stderr, "DEBUG PT 1 in %s:%d\n", __func__, __LINE__);
fimg_save_as_png(image, "source.png", 0);
fimg_save_as_png(image, "crap_before.png", 0);
}
switch (idFx) {
@@ -100,7 +105,7 @@ switch (idFx) {
if (flag_debug) {
fprintf(stderr, "DEBUG PT 2 in %s:%d\n", __func__, __LINE__);
fimg_save_as_png(image, "after.png", 0);
fimg_save_as_png(image, "crap_after.png", 0);
}
count++; flag_debug = 0;