\twocolitem{\helpref{wxCmdLineParser}{wxcmdlineparser}}{Command line parser class}
\twocolitem{\helpref{wxConfig}{wxconfigbase}}{Classes for configuration reading/writing (using either INI files or registry)}
\twocolitem{\helpref{wxDllLoader}{wxdllloader}}{Class to work with shared libraries.}
+\twocolitem{\helpref{wxGLCanvas}{wxglcanvas}}{Canvas that you can render opengl calls to.}
+\twocolitem{\helpref{wxGLContext}{wxglcontext}}{Class to ease sharing of opengl data resources.}
\twocolitem{\helpref{wxLayoutAlgorithm}{wxlayoutalgorithm}}{An alternative window layout facility}
\twocolitem{\helpref{wxProcess}{wxprocess}}{Process class}
\twocolitem{\helpref{wxTimer}{wxtimer}}{Timer class}
\twocolitem{\windowstyle{WX\_GL\_MIN\_ACCUM\_ALPHA}}{Use blue buffer with most bits (> MIN\_ACCUM\_ALPHA bits)}
\end{twocollist}
+\wxheading{See Also}
+
+\helpref{wxGLContext}{wxglcontext}
+
\latexignore{\rtfignore{\wxheading{Members}}}
\membersection{wxGLCanvas::wxGLCanvas}\label{wxglcanvasconstr}
\func{void}{SetCurrent}{\void}
Sets this canvas as the current recipient of OpenGL calls.
-Each canvas contain an OpenGL device context that has been created during
+Each canvas contains an OpenGL device context that has been created during
the creation of this window. So this call sets the current device context
as the target device context for OpenGL operations.
--- /dev/null
+\section{\class{wxGLContext}}\label{wxglcontext}
+
+wxGLContext is a class for sharing opengl data resources, such as display lists, with another \helpref{wxGLCanvas}{wxglcanvas}.
+
+By sharing data resources, you can prevent code duplication, save memory, and ultimately help optimize your application.
+
+As an example, let's say you want to draw a ball on two different windows that is identical on each one, but the dimensions of one is slightly different than the other one. What you would do is create your display lists in the shared canvas, and then translate each ball on the individual canvas's context. This way the actual data for the ball is only created once (in the shared context), and you won't have to duplicate your development efforts on the second ball.
+
+Note that some wxGLContext features are extremely platform-specific - its best to check your native platform's glcanvas header (on windows include/wx/msw/glcanvas.h) to see what features your native platform provides.
+
+\wxheading{Derived from}
+
+\helpref{wxObject}{wxobject}
+
+\wxheading{Include files}
+
+<wx/glcanvas.h>\\
+\\
+\wxheading{See Also}
+
+\helpref{wxGLCanvas}{wxglcanvas}
+
+\latexignore{\rtfignore{\wxheading{Members}}}
+
+\membersection{wxGLContext::wxGLContext}\label{wxglcontextconstr}
+
+\func{void}{wxGLContext}{\param{bool }{isRGB}, \param{wxGLCanvas*}{ win}, \param{const wxPalette\&}{ palette = wxNullPalette}}
+
+\func{void}{wxGLContext}{\param{bool }{isRGB}, \param{wxGLCanvas*}{ win}, \param{const wxPalette\&}{ palette = wxNullPalette},
+ \param{const wxGLContext*}{ other}}
+
+\docparam{win}{Canvas to associate this shared context with.}
+
+\docparam{other}{Context to share data resources with.}
+
+\membersection{wxGLContext::GetWindow}\label{wxglcontextgetwindow}
+
+\func{const wxWindow*}{GetWindow}{\void}
+
+Obtains the window that is associated with this context.
+
+\membersection{wxGLContext::SetCurrent}\label{wxglcontextsetcurrent}
+
+\func{void}{SetCurrent}{\void}
+
+Sets this context as the current recipient of OpenGL calls.
+Each context contains an OpenGL device context that has been created during
+the creation of this window. So this call sets the current device context
+as the target device context for OpenGL operations.
+
+\membersection{wxGLContext::SetColour}\label{wxglcontextsetcolour}
+
+\func{void}{SetColour}{\param{const char*}{ colour}}
+
+Sets the current colour for this context, using the wxWidgets colour database to find a named colour.
+
+\membersection{wxGLContext::SwapBuffers}\label{wxglcontextswapbuffers}
+
+\func{void}{SwapBuffers}{\void}
+
+Displays the previous OpenGL commands on the associated window.