summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-03-25 16:41:01 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-03-25 16:41:01 +0000
commit98c9f2cc6bf9a5c2c90430c036729c14e3645957 (patch)
tree60b8e5c22f27ddcd6b104284d3fec4e9a5063568 /FL
parentba2eae871a01b41de7cd3e6c4d217c6038bb8156 (diff)
Stereo OpenGL patch from Stuart Levy...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2012 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Enumerations.H7
-rw-r--r--FL/glut.H6
2 files changed, 7 insertions, 6 deletions
diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index 16d527695..2692c2c63 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -1,5 +1,5 @@
//
-// "$Id: Enumerations.H,v 1.18.2.14.2.19 2002/01/09 21:50:02 easysw Exp $"
+// "$Id: Enumerations.H,v 1.18.2.14.2.20 2002/03/25 16:41:01 easysw Exp $"
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
@@ -361,7 +361,8 @@ enum Fl_Mode { // visual types and Fl_Gl_Window::mode() (values match Glut)
FL_DEPTH = 16,
FL_STENCIL = 32,
FL_RGB8 = 64,
- FL_MULTISAMPLE= 128
+ FL_MULTISAMPLE= 128,
+ FL_STEREO = 256
};
// damage masks
@@ -377,5 +378,5 @@ enum Fl_Damage {
#endif
//
-// End of "$Id: Enumerations.H,v 1.18.2.14.2.19 2002/01/09 21:50:02 easysw Exp $".
+// End of "$Id: Enumerations.H,v 1.18.2.14.2.20 2002/03/25 16:41:01 easysw Exp $".
//
diff --git a/FL/glut.H b/FL/glut.H
index 6b3b64a5f..686a9b0a7 100644
--- a/FL/glut.H
+++ b/FL/glut.H
@@ -1,5 +1,5 @@
//
-// "$Id: glut.H,v 1.6.2.10.2.1 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: glut.H,v 1.6.2.10.2.2 2002/03/25 16:41:01 easysw Exp $"
//
// GLUT emulation header file for the Fast Light Tool Kit (FLTK).
//
@@ -106,7 +106,7 @@ FL_EXPORT void glutInitDisplayMode(unsigned int mode);
#define GLUT_DEPTH FL_DEPTH
#define GLUT_STENCIL FL_STENCIL
#define GLUT_MULTISAMPLE FL_MULTISAMPLE
-// #define GLUT_STEREO 256
+#define GLUT_STEREO FL_STEREO
// #define GLUT_LUMINANCE 512
FL_EXPORT void glutInitWindowPosition(int x, int y);
@@ -470,5 +470,5 @@ extern void APIENTRY glutSolidIcosahedron();
#endif /* __glut_h__ */
//
-// End of "$Id: glut.H,v 1.6.2.10.2.1 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: glut.H,v 1.6.2.10.2.2 2002/03/25 16:41:01 easysw Exp $".
//