diff options
| author | Jed Barber <jjbarber@y7mail.com> | 2017-06-17 11:28:39 +1000 | 
|---|---|---|
| committer | Jed Barber <jjbarber@y7mail.com> | 2017-06-17 11:28:39 +1000 | 
| commit | fb37523537cdb69a31dede401a604981ce8b7b9d (patch) | |
| tree | 9d8f8dc3a00ce27b69aa4b7d7696b49d659fcbe1 /src/c_fl_rgb_image.h | |
| parent | 33c3691b571ce4b6a2aa6997b70c3bc5d991ca9d (diff) | |
Updated coding style, added progress log
Diffstat (limited to 'src/c_fl_rgb_image.h')
| -rw-r--r-- | src/c_fl_rgb_image.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/src/c_fl_rgb_image.h b/src/c_fl_rgb_image.h index 3209909..2879be1 100644 --- a/src/c_fl_rgb_image.h +++ b/src/c_fl_rgb_image.h @@ -4,14 +4,20 @@  #define FL_RGB_IMAGE_GUARD + +  typedef void* RGB_IMAGE; + +  extern "C" void free_fl_rgb_image(RGB_IMAGE i);  extern "C" RGB_IMAGE fl_rgb_image_copy(RGB_IMAGE i, int w, int h);  extern "C" RGB_IMAGE fl_rgb_image_copy2(RGB_IMAGE i); + +  extern "C" void fl_rgb_image_color_average(RGB_IMAGE i, int c, float b);  extern "C" void fl_rgb_image_desaturate(RGB_IMAGE i); | 
