forked from tTh/FloatImg
missing parameter
This commit is contained in:
parent
b8e5bbf3cc
commit
ab8ad5a913
|
@ -197,7 +197,7 @@ switch (idFx) {
|
|||
retval = insitu_filtre3x3(image, 1);
|
||||
break;
|
||||
case 20:
|
||||
retval = octotree_classif(image, 0);
|
||||
retval = octotree_classif(image, 0.5, 0);
|
||||
break;
|
||||
|
||||
|
||||
|
@ -262,6 +262,7 @@ switch (num) {
|
|||
case 18: return "updown";
|
||||
|
||||
case 20: return "octoclass";
|
||||
case 25: return "vsglitch";
|
||||
}
|
||||
|
||||
return "???";
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/*
|
||||
* sfx.h - special effects for fonderie & interpolator
|
||||
* ---------------------------------------------------
|
||||
*/
|
||||
|
||||
|
||||
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 upside_down(FloatImg *pimg);
|
||||
|
|
Loading…
Reference in New Issue