summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2015-04-28 20:51:32 +0000
committerGreg Ercolano <erco@seriss.com>2015-04-28 20:51:32 +0000
commit1c7daeca631f6bbf88b99f9ecd79a5cedd64f550 (patch)
tree4283a0a19cca0b2562a396e512f878549096c8fe /FL
parent8477a8108b6fa07ce66ef94d2405a8d85015b7af (diff)
Doc clarifications for Fl_Image methods:
> inactive() > desaturate() > color_average() git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10725 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Image.H6
1 files changed, 4 insertions, 2 deletions
diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H
index 6890a9356..e099741c1 100644
--- a/FL/Fl_Image.H
+++ b/FL/Fl_Image.H
@@ -140,8 +140,10 @@ class FL_EXPORT Fl_Image {
/**
The inactive() method calls
color_average(FL_BACKGROUND_COLOR, 0.33f) to produce
- an image that appears grayed out. <I>This method does not
- alter the original image data.</I>
+ an image that appears grayed out.
+
+ An internal copy is made of the original image before
+ changes are applied, to avoid modifying the original image.
*/
void inactive() { color_average(FL_GRAY, .33f); }
virtual void desaturate();