From 681ded73c20af217254a8dfb7838b612b17b126c Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 18 Nov 2001 20:52:28 +0000 Subject: Add Fl_Bitmask type, fl_create_bitmask() and fl_delete_bitmask() functions for common mask generation stuff (need to test under WIN32!) Add alpha channel support to Fl_RGB_Image class; currently uses "screen door" transparency. Update image demo to draw an RGBA image to show alpha channel. Comment out debug printf in tooltip code. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1696 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Bitmap.H | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'FL/Fl_Bitmap.H') diff --git a/FL/Fl_Bitmap.H b/FL/Fl_Bitmap.H index 03256caa7..3d9ac5411 100644 --- a/FL/Fl_Bitmap.H +++ b/FL/Fl_Bitmap.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Bitmap.H,v 1.5.2.3.2.1 2001/08/05 23:58:54 easysw Exp $" +// "$Id: Fl_Bitmap.H,v 1.5.2.3.2.2 2001/11/18 20:52:27 easysw Exp $" // // Bitmap header file for the Fast Light Tool Kit (FLTK). // @@ -34,7 +34,7 @@ class FL_EXPORT Fl_Bitmap : public Fl_Image { public: const uchar *array; - ulong id; // for internal use + Fl_Bitmask id; // for internal use Fl_Bitmap(const uchar *bits, int W, int H) : Fl_Image(W,H), array(bits), id(0) {} @@ -50,5 +50,5 @@ class FL_EXPORT Fl_Bitmap : public Fl_Image { #endif // -// End of "$Id: Fl_Bitmap.H,v 1.5.2.3.2.1 2001/08/05 23:58:54 easysw Exp $". +// End of "$Id: Fl_Bitmap.H,v 1.5.2.3.2.2 2001/11/18 20:52:27 easysw Exp $". // -- cgit v1.2.3