From 1e761c7b4491377fe9c91a37c438856178cc4f8e Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 28 Jul 2017 10:45:20 +1000 Subject: Finished up FLTK.Images and partially complete derivatives --- src/c_fl_bitmap.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/c_fl_bitmap.cpp') diff --git a/src/c_fl_bitmap.cpp b/src/c_fl_bitmap.cpp index fe5fd99..ce1c221 100644 --- a/src/c_fl_bitmap.cpp +++ b/src/c_fl_bitmap.cpp @@ -16,3 +16,10 @@ BITMAP fl_bitmap_copy2(BITMAP b) { return reinterpret_cast(b)->copy(); } + + + +void fl_bitmap_draw(BITMAP b, int x, int y, int w, int h, int cx, int cy) { + reinterpret_cast(b)->draw(x, y, w, h, cx, cy); +} + -- cgit