missing parameter

This commit is contained in:
tonton th 2020-12-29 12:22:51 +01:00
parent b8e5bbf3cc
commit ab8ad5a913
2 changed files with 4 additions and 3 deletions

View File

@ -197,7 +197,7 @@ switch (idFx) {
retval = insitu_filtre3x3(image, 1); retval = insitu_filtre3x3(image, 1);
break; break;
case 20: case 20:
retval = octotree_classif(image, 0); retval = octotree_classif(image, 0.5, 0);
break; break;
@ -262,6 +262,7 @@ switch (num) {
case 18: return "updown"; case 18: return "updown";
case 20: return "octoclass"; case 20: return "octoclass";
case 25: return "vsglitch";
} }
return "???"; return "???";

View File

@ -1,10 +1,10 @@
/* /*
* sfx.h - special effects for fonderie & interpolator * sfx.h - special effects for fonderie & interpolator
* ---------------------------------------------------
*/ */
int bouger_les_pixels(FloatImg *pimg, int kaboo); int bouger_les_pixels(FloatImg *pimg, int kaboo);
int octotree_classif(FloatImg *pimg, int notused); int octotree_classif(FloatImg *pimg, float fk, int notused);
int mirror_split(FloatImg *pimg, int kaboo); int mirror_split(FloatImg *pimg, int kaboo);
int upside_down(FloatImg *pimg); int upside_down(FloatImg *pimg);