add a new function - part 2

This commit is contained in:
tth 2019-09-28 23:55:45 +02:00
parent 4945bb1c53
commit 6c3b33dad1
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* floatimg.h
*/
#define FIMG_VERSION 73
#define FIMG_VERSION 74
/*
* in memory descriptor
@ -46,6 +46,7 @@ int fimg_fileinfo(char *fname, int *datas);
int fimg_plot_rgb (FloatImg *head, int x, int y, float r, float g, float b);
int fimg_clear(FloatImg *fimg);
int fimg_add_rgb(FloatImg *head, int x, int y, float r, float g, float b);
int fimg_rgb_constant(FloatImg *head, float r, float g, float b);
int fimg_images_compatible(FloatImg *a, FloatImg *b);