aboutsummaryrefslogtreecommitdiff
path: root/src/c_fl_rgb_image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_rgb_image.h')
-rw-r--r--src/c_fl_rgb_image.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/c_fl_rgb_image.h b/src/c_fl_rgb_image.h
deleted file mode 100644
index 0e32539..0000000
--- a/src/c_fl_rgb_image.h
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-#ifndef FL_RGB_IMAGE_GUARD
-#define FL_RGB_IMAGE_GUARD
-
-
-
-
-typedef void* RGB_IMAGE;
-
-
-
-
-extern "C" RGB_IMAGE new_fl_rgb_image(void *data, int w, int h, int d, int ld);
-extern "C" RGB_IMAGE new_fl_rgb_image2(void *pix, unsigned int c);
-extern "C" void free_fl_rgb_image(RGB_IMAGE i);
-extern "C" size_t fl_rgb_image_get_max_size();
-extern "C" void fl_rgb_image_set_max_size(size_t v);
-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);
-
-
-extern "C" void fl_rgb_image_uncache(RGB_IMAGE i);
-
-
-extern "C" void fl_rgb_image_draw2(RGB_IMAGE i, int x, int y);
-extern "C" void fl_rgb_image_draw(RGB_IMAGE i, int x, int y, int w, int h, int cx, int cy);
-
-
-#endif
-