From fb37523537cdb69a31dede401a604981ce8b7b9d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 17 Jun 2017 11:28:39 +1000 Subject: Updated coding style, added progress log --- src/c_fl_rgb_image.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/c_fl_rgb_image.cpp') diff --git a/src/c_fl_rgb_image.cpp b/src/c_fl_rgb_image.cpp index 83a89ac..96b5266 100644 --- a/src/c_fl_rgb_image.cpp +++ b/src/c_fl_rgb_image.cpp @@ -4,16 +4,16 @@ #include "c_fl_rgb_image.h" + + void free_fl_rgb_image(RGB_IMAGE i) { delete reinterpret_cast(i); } - RGB_IMAGE fl_rgb_image_copy(RGB_IMAGE i, int w, int h) { return reinterpret_cast(i)->copy(w, h); } - RGB_IMAGE fl_rgb_image_copy2(RGB_IMAGE i) { return reinterpret_cast(i)->copy(); } @@ -25,7 +25,6 @@ void fl_rgb_image_color_average(RGB_IMAGE i, int c, float b) { reinterpret_cast(i)->color_average(c, b); } - void fl_rgb_image_desaturate(RGB_IMAGE i) { reinterpret_cast(i)->desaturate(); } -- cgit