diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-03-24 10:00:01 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-03-24 10:00:01 +0100 |
| commit | 427e4dbc7a31407f3e8ca80f2dd2a84869af4b3d (patch) | |
| tree | e22d843aa4ab0760d69f4195ed4e3615e416e409 /src/drivers/GDI/Fl_GDI_Graphics_Driver.H | |
| parent | 70f61a63f4cc6ff53d8d6e7c60dd21ff71b9414e (diff) | |
Remove platform-dependent type Fl_Bitmask (not in documented public API).
Diffstat (limited to 'src/drivers/GDI/Fl_GDI_Graphics_Driver.H')
| -rw-r--r-- | src/drivers/GDI/Fl_GDI_Graphics_Driver.H | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/drivers/GDI/Fl_GDI_Graphics_Driver.H b/src/drivers/GDI/Fl_GDI_Graphics_Driver.H index 0749ab798..c916fc65e 100644 --- a/src/drivers/GDI/Fl_GDI_Graphics_Driver.H +++ b/src/drivers/GDI/Fl_GDI_Graphics_Driver.H @@ -69,8 +69,9 @@ public: virtual void *gc() {return gc_;} // --- bitmap stuff - Fl_Bitmask create_bitmask(int w, int h, const uchar *array); - void delete_bitmask(Fl_Bitmask bm); + HBITMAP create_bitmask(int w, int h, const uchar *array); // NOT virtual + virtual void delete_bitmask(fl_uintptr_t bm); + HBITMAP create_alphamask(int w, int h, int d, int ld, const uchar *array); virtual void draw_unscaled(const char* str, int n, int x, int y); virtual void draw_unscaled(int angle, const char *str, int n, int x, int y); virtual void rtl_draw_unscaled(const char* str, int n, int x, int y); |
