summaryrefslogtreecommitdiff
path: root/src/c_fl_image.h
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-16 14:21:05 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-16 14:21:05 +1300
commitdbf6f4db24aee7315b2782a87e127367887e2036 (patch)
tree91f5af52dbdf6be9e1f5026bcf354a6455dd411d /src/c_fl_image.h
parentba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff)
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_image.h')
-rw-r--r--src/c_fl_image.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/c_fl_image.h b/src/c_fl_image.h
index 75afb4a..ee96b7a 100644
--- a/src/c_fl_image.h
+++ b/src/c_fl_image.h
@@ -8,13 +8,9 @@
#define FL_IMAGE_GUARD
-
-
typedef void* IMAGE;
-
-
extern "C" IMAGE new_fl_image(int w, int h, int d);
extern "C" void free_fl_image(IMAGE i);
@@ -25,8 +21,6 @@ extern "C" IMAGE fl_image_copy(IMAGE i, int w, int h);
extern "C" IMAGE fl_image_copy2(IMAGE i);
-
-
extern "C" void fl_image_color_average(IMAGE i, int c, float b);
extern "C" void fl_image_desaturate(IMAGE i);
@@ -55,3 +49,4 @@ extern "C" void fl_image_draw_empty(IMAGE i, int x, int y);
#endif
+