From b4438b2fbe895694be98e6e8426103deefc51448 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 21 Jan 2025 21:04:54 +1300 Subject: Split public API and private implementation files into different directories --- body/c_fl_rgb_image.cpp | 78 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 body/c_fl_rgb_image.cpp (limited to 'body/c_fl_rgb_image.cpp') diff --git a/body/c_fl_rgb_image.cpp b/body/c_fl_rgb_image.cpp new file mode 100644 index 0000000..65afbf9 --- /dev/null +++ b/body/c_fl_rgb_image.cpp @@ -0,0 +1,78 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#include +#include +#include "c_fl_rgb_image.h" + + + + +RGBIMAGE new_fl_rgb_image(void *data, int w, int h, int d, int ld) { + Fl_RGB_Image *rgb = new Fl_RGB_Image(static_cast(data), w, h, d, ld); + return rgb; +} + +RGBIMAGE new_fl_rgb_image2(void *pix, unsigned int c) { + Fl_RGB_Image *rgb = new Fl_RGB_Image(static_cast(pix), c); + return rgb; +} + +void free_fl_rgb_image(RGBIMAGE i) { + delete static_cast(i); +} + +size_t fl_rgb_image_get_max_size() { + return Fl_RGB_Image::max_size(); +} + +void fl_rgb_image_set_max_size(size_t v) { + Fl_RGB_Image::max_size(v); +} + +RGBIMAGE fl_rgb_image_copy(RGBIMAGE i, int w, int h) { + // virtual so disable dispatch + return static_cast(i)->Fl_RGB_Image::copy(w, h); +} + +RGBIMAGE fl_rgb_image_copy2(RGBIMAGE i) { + return static_cast(i)->copy(); +} + + + + +void fl_rgb_image_color_average(RGBIMAGE i, int c, float b) { + // virtual so disable dispatch + static_cast(i)->Fl_RGB_Image::color_average(c, b); +} + +void fl_rgb_image_desaturate(RGBIMAGE i) { + // virtual so disable dispatch + static_cast(i)->Fl_RGB_Image::desaturate(); +} + + + + +void fl_rgb_image_uncache(RGBIMAGE i) { + // virtual so disable dispatch + static_cast(i)->Fl_RGB_Image::uncache(); +} + + + + +void fl_rgb_image_draw2(RGBIMAGE i, int x, int y) { + static_cast(i)->draw(x, y); +} + +void fl_rgb_image_draw(RGBIMAGE i, int x, int y, int w, int h, int cx, int cy) { + // virtual so disable dispatch + static_cast(i)->Fl_RGB_Image::draw(x, y, w, h, cx, cy); +} + + -- cgit