summaryrefslogtreecommitdiff
path: root/src/fl_rect.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-24 08:38:11 +0000
committerManolo Gouy <Manolo>2016-04-24 08:38:11 +0000
commit98f071fa16064abc6785519b4ce8c3cb3f404812 (patch)
treed428f7fdd6e153f04d06f0785bdc77e393a233e7 /src/fl_rect.cxx
parent8dddcb2d1d78adc558bbb0e3cde04b71a6cbc4cd (diff)
Add Doxygen comments for members of the Fl_Graphics_Driver class.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11689 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_rect.cxx')
-rw-r--r--src/fl_rect.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fl_rect.cxx b/src/fl_rect.cxx
index af096d390..0b9595dae 100644
--- a/src/fl_rect.cxx
+++ b/src/fl_rect.cxx
@@ -39,11 +39,12 @@
extern int fl_line_width_;
+/** see fl_restore_clip() */
void Fl_Graphics_Driver::restore_clip() {
fl_clip_state_number++;
}
-
+/** see fl_clip_region(Fl_Region) */
void Fl_Graphics_Driver::clip_region(Fl_Region r) {
Fl_Region oldr = rstack[rstackptr];
if (oldr) XDestroyRegion(oldr);
@@ -52,6 +53,7 @@ void Fl_Graphics_Driver::clip_region(Fl_Region r) {
}
+/** see fl_clip_region(void) */
Fl_Region Fl_Graphics_Driver::clip_region() {
return rstack[rstackptr];
}