summaryrefslogtreecommitdiff
path: root/FL/Fl_Bitmap.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Bitmap.H')
-rw-r--r--FL/Fl_Bitmap.H10
1 files changed, 7 insertions, 3 deletions
diff --git a/FL/Fl_Bitmap.H b/FL/Fl_Bitmap.H
index 5e0028c23..0df5ab23b 100644
--- a/FL/Fl_Bitmap.H
+++ b/FL/Fl_Bitmap.H
@@ -42,12 +42,16 @@ struct Fl_Menu_Item;
class FL_EXPORT Fl_Bitmap : public Fl_Image {
public:
+ /** pointer to raw bitmap data */
const uchar *array;
- int alloc_array; // Non-zero if data was allocated
+ /** Non-zero if array points to bitmap data allocated internally */
+ int alloc_array;
#if defined(__APPLE__) || defined(WIN32)
- void *id; // for internal use
+ /** for internal use */
+ void *id;
#else
- unsigned id; // for internal use
+ /** for internal use */
+ unsigned id;
#endif // __APPLE__ || WIN32
/** The constructors create a new bitmap from the specified bitmap data */
Fl_Bitmap(const uchar *bits, int W, int H) :