|
|
|
@ -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;
|
|
|
|
|