summaryrefslogtreecommitdiff
path: root/FL/Enumerations.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Enumerations.H')
-rw-r--r--FL/Enumerations.H9
1 files changed, 9 insertions, 0 deletions
diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index e8237ff74..add29e828 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -290,4 +290,13 @@ enum Fl_Mode { // visual types and Fl_Gl_Window::mode() (values match Glut)
FL_MULTISAMPLE= 128
};
+// damage masks
+
+const uchar FL_DAMAGE_CHILD = 0x01;
+const uchar FL_DAMAGE_EXPOSE = 0x02;
+const uchar FL_DAMAGE_LINE = 0x02;
+const uchar FL_DAMAGE_SCROLL = 0x04;
+const uchar FL_DAMAGE_OVERLAY = 0x04|0x08;
+const uchar FL_DAMAGE_ALL = 0x80;
+
#endif