summaryrefslogtreecommitdiff
path: root/src/gl_draw.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2002-01-03 08:08:21 +0000
committerMatthias Melcher <fltk@matthiasm.com>2002-01-03 08:08:21 +0000
commit1775984dbea2b186a9cd7b5a8b697558028e7da9 (patch)
tree432a4522d897897bceff31921e71060ae94fbf6f /src/gl_draw.cxx
parent2283309d0349118ffbd8313dd4a898eeeda2df04 (diff)
cleaned up src/Fl_mac.cxx, fixed Fl::wait(0.0), fixed Cmd-Q handling
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1905 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/gl_draw.cxx')
-rw-r--r--src/gl_draw.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gl_draw.cxx b/src/gl_draw.cxx
index e1575bc20..27b756ac3 100644
--- a/src/gl_draw.cxx
+++ b/src/gl_draw.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: gl_draw.cxx,v 1.7.2.5.2.4 2002/01/01 15:11:32 easysw Exp $"
+// "$Id: gl_draw.cxx,v 1.7.2.5.2.5 2002/01/03 08:08:21 matthiaswm Exp $"
//
// OpenGL drawing support routines for the Fast Light Tool Kit (FLTK).
//
@@ -54,7 +54,8 @@ void gl_font(int fontid, int size) {
wglUseFontBitmaps(fl_gc, base, size, fl_fontsize->listbase+base);
SelectObject(fl_gc, oldFid);
#elif defined(__APPLE__)
- //++ Matt: Insert MacOS/AGL font handling here
+ // \todo Mac : Insert MacOS/AGL font handling here (aglUseFont)
+ // aglUseFont( context, fontID/GetFNum(), Style[norma, bold, italic], size, first, count, base );
#else
int base = fl_xfont->min_char_or_byte2;
int size = fl_xfont->max_char_or_byte2-base+1;
@@ -157,5 +158,5 @@ void gl_draw_image(const uchar* b, int x, int y, int w, int h, int d, int ld) {
#endif
//
-// End of "$Id: gl_draw.cxx,v 1.7.2.5.2.4 2002/01/01 15:11:32 easysw Exp $".
+// End of "$Id: gl_draw.cxx,v 1.7.2.5.2.5 2002/01/03 08:08:21 matthiaswm Exp $".
//