FloatImg/Fonderie/filterstack.h

19 lines
266 B
C
Raw Normal View History

2020-12-03 21:56:45 +01:00
/*
* filterstack.h
*/
typedef struct {
int numero;
int ival;
float fval;
} FilterSlot;
int filterstack_init(int nbre);
int filterstack_add(int code, int ival, float fval);
int filterstack_list(void);
int filterstack_run(FloatImg *target, int notused);