Compare commits

..

No commits in common. "96ad003df6a43cc7b0e34c3d63b225e8e59d2822" and "327cadd03ad51b6d948d30cbcbb27e3c756141da" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -299,6 +299,7 @@ switch (idFx) {
break;
case CR_hilightr:
fprintf(stderr, "filter %d is a WIP\n", idFx);
retval = fimg_highlight_color(image, image, 'R', 1.717);
break;

View File

@ -70,7 +70,7 @@ for (idx=0; idx<sz; idx++) {
int fimg_highlight_color(FloatImg *src, FloatImg *dst, char color, float fval)
{
#if DEBUG_LEVEL
#ifdef DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %p %p [%c] %f )\n", __func__,
src, dst, color, fval);
#endif