-extern "C"
-{
- #include <GL/gl.h>
- #include <GL/glx.h>
- #include <GL/glu.h>
-}
-
-//---------------------------------------------------------------------------
-// wxGLContext
-//---------------------------------------------------------------------------
-
-
-class WXDLLEXPORT wxGLContext : public wxGLContextBase
-{
-public:
- wxGLContext(wxWindow* win, const wxGLContext* other = NULL);
- virtual ~wxGLContext();
-
- virtual void SetCurrent(const wxGLCanvas& win) const;
-
-private:
- GLXContext m_glContext;
-
- DECLARE_CLASS(wxGLContext)
-};