added fimg_killcolors_a effect

This commit is contained in:
2020-02-07 18:01:28 +01:00
parent c48a3e4870
commit 622d011424
4 changed files with 71 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
* floatimg.h
*/
#define FIMG_VERSION 88
#define FIMG_VERSION 89
/*
* in memory descriptor
@@ -75,6 +75,11 @@ int fimg_mul_3(FloatImg *a, FloatImg *b, FloatImg *d);
int fimg_minimum(FloatImg *a, FloatImg *b, FloatImg *d);
int fimg_maximum(FloatImg *a, FloatImg *b, FloatImg *d);
/* 'sfx0' module */
int fimg_killcolors_a(FloatImg *fimg, float fval);
/* PNM files module */
int fimg_save_as_pnm(FloatImg *head, char *fname, int flags);
int fimg_load_from_pnm(char *fname, FloatImg *head, int notused);