diff options
| author | Manolo Gouy <Manolo> | 2015-10-21 17:13:11 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2015-10-21 17:13:11 +0000 |
| commit | 04d0d5f6be3541759ee68497afe0983389f32aed (patch) | |
| tree | 124351dc611045c9af5c5a2de64718d35b40d28a /FL | |
| parent | 1095d4db412a59dd6930051d4419103bd9113811 (diff) | |
Documentation: explicit what #include commands are needed to use
the Fl_Gl_Window::mode(int *) method.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10873 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Gl_Window.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Gl_Window.H b/FL/Fl_Gl_Window.H index 2c4b11250..4b28c18ed 100644 --- a/FL/Fl_Gl_Window.H +++ b/FL/Fl_Gl_Window.H @@ -172,7 +172,7 @@ public: /** Set the OpenGL capabilites of the window using platform-specific data. \param a zero-ending array of platform-specific attributes and attribute values <p><b>Unix/Linux platform</b>: attributes are GLX attributes adequate for the 3rd argument of - the <tt>glXChooseVisual()</tt> function (e.g., <tt>GLX_DOUBLEBUFFER</tt>). + the <tt>glXChooseVisual()</tt> function (e.g., <tt>GLX_DOUBLEBUFFER</tt>, defined by including <GL/glx.h>). \note What attributes are adequate here is subject to change. The preferred, stable public API is Fl_Gl_Window::mode(int a). <p><b>MSWindows platform</b>: this member function is of no use. @@ -180,7 +180,7 @@ public: (defined by including <tt><OpenGL/OpenGL.h></tt>, e.g., <tt>kCGLPFADoubleBuffer</tt>) and may be followed by adequate attribute values. The pair <tt>kCGLPFAOpenGLProfile, kCGLOGLPVersion_3_2_Core</tt> allows to create an OpenGL V3.2 profile - under Mac OS X 10.7 and above. + under Mac OS X 10.7 and above (and include <OpenGL/gl3.h> to define OpenGL 3 symbols). */ int mode(const int *a) {return mode(0, a);} /** Returns a pointer to the GLContext that this window is using. |
