summaryrefslogtreecommitdiff
path: root/src/Fl_Gl_Choice.H
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2000-03-18 10:04:18 +0000
committerBill Spitzak <spitzak@gmail.com>2000-03-18 10:04:18 +0000
commit7851ae32521c3138d6c2749c1bd591311813eb6f (patch)
tree9d82bca040108ca451d28cc0229f65272ac5093d /src/Fl_Gl_Choice.H
parentca15addad29e97d06a477895877e72b301a0529c (diff)
OpenGL overlays now work on NT!
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1044 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Gl_Choice.H')
-rw-r--r--src/Fl_Gl_Choice.H9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Fl_Gl_Choice.H b/src/Fl_Gl_Choice.H
index e49eff019..2aaeface5 100644
--- a/src/Fl_Gl_Choice.H
+++ b/src/Fl_Gl_Choice.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Gl_Choice.H,v 1.4.2.1 1999/09/16 05:34:24 bill Exp $"
+// "$Id: Fl_Gl_Choice.H,v 1.4.2.2 2000/03/18 10:04:17 bill Exp $"
//
// OpenGL definitions for the Fast Light Tool Kit (FLTK).
//
@@ -62,10 +62,11 @@ class Fl_Gl_Choice {
Fl_Gl_Choice *next;
public:
#ifdef WIN32
- PIXELFORMATDESCRIPTOR pfd;
+ int pixelformat; // the visual to use
+ PIXELFORMATDESCRIPTOR pfd; // some wgl calls need this thing
#else
XVisualInfo *vis; // the visual to use
- Colormap colormap; // a colormap to use
+ Colormap colormap; // a colormap for that visual
#endif
uchar r,d,o; // rgb mode, double buffered, overlay flags
// Return one of these structures for a given gl mode.
@@ -90,5 +91,5 @@ void fl_no_gl_context();
#endif
//
-// End of "$Id: Fl_Gl_Choice.H,v 1.4.2.1 1999/09/16 05:34:24 bill Exp $".
+// End of "$Id: Fl_Gl_Choice.H,v 1.4.2.2 2000/03/18 10:04:17 bill Exp $".
//