summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2018-01-04 15:23:18 +0000
committerManolo Gouy <Manolo>2018-01-04 15:23:18 +0000
commit1a341391e7478cf7c11dba92ec1665b7f470808c (patch)
tree6d0774eaf28062d30589db5d1c90298a11b3782a
parent8fccb7384233b82ffb1a3e3be58dd3488d581e47 (diff)
Add Doxygen comments explaining the purpose of Fl_Window_Driver::draw_begin()/draw_end().
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12619 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--FL/Fl_Window_Driver.H2
1 files changed, 2 insertions, 0 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H
index d9f883fb8..9bc8c6b3a 100644
--- a/FL/Fl_Window_Driver.H
+++ b/FL/Fl_Window_Driver.H
@@ -126,7 +126,9 @@ public:
virtual void flush_overlay();
virtual void flush_menu();
virtual void erase_menu() {}
+ /** Usable for platform-specific code executed before the platform-independent part of Fl_Window::draw() */
virtual void draw_begin();
+ /** Usable for platform-specific code executed after the platform-independent part of Fl_Window::draw() */
virtual void draw_end();
void draw();
virtual void make_current();