diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-02-13 12:57:00 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-02-13 12:57:00 +0000 |
| commit | 5d1df0e789c794b8040c5db0d84b03ae2b42fd8d (patch) | |
| tree | 4e99ebb978d30bf6c7138181489dd37ce435c310 /src/fl_overlay.cxx | |
| parent | 8deac1e6baf7a016aabd3b6cb5ccffd7f09263cd (diff) | |
Details on PORTME items. Move fl_parse_color() to screen drivers.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11163 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_overlay.cxx')
| -rw-r--r-- | src/fl_overlay.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_overlay.cxx b/src/fl_overlay.cxx index 5962bb1fe..41ac3b4a5 100644 --- a/src/fl_overlay.cxx +++ b/src/fl_overlay.cxx @@ -23,7 +23,7 @@ #include <FL/x.H> #include <FL/fl_draw.H> -#ifdef __APPLE__ // PORTME: platform overlay +#ifdef __APPLE__ // PORTME: Fl_Window_Driver - platform overlay #include <config.h> #endif @@ -48,7 +48,7 @@ static void draw_current_rect() { int old = SetROP2(fl_gc, R2_NOT); fl_rect(px, py, pw, ph); SetROP2(fl_gc, old); -# elif defined(__APPLE_QUARTZ__) // PORTME: platform overlay +# elif defined(__APPLE_QUARTZ__) // PORTME: Fl_Window_Driver - platform overlay // warning: Quartz does not support xor drawing // Use the Fl_Overlay_Window instead. fl_color(FL_WHITE); @@ -81,7 +81,7 @@ static void draw_current_rect() { static void erase_current_rect() { #ifdef USE_XOR -# ifdef __APPLE_QUARTZ__ // PORTME: platform overlay +# ifdef __APPLE_QUARTZ__ // PORTME: Fl_Window_Driver - platform overlay fl_rect(px, py, pw, ph); # else draw_current_rect(); |
