-
-//---------------------------------------------------------------------------
-// wxGLApp
-//---------------------------------------------------------------------------
-
-class WXDLLEXPORT wxGLApp: public wxApp
-{
-public:
- wxGLApp() : wxApp() { }
- ~wxGLApp();
-
- // use this in the constructor of the user-derived wxGLApp class to select
- // an appropriate X visual for GL. Returns TRUE if an appropriate visual
- // is found - and sets m_glVisualInfo; FALSE otherwise.
- bool InitGLVisual(int *attribList);
-
-private:
- DECLARE_DYNAMIC_CLASS(wxGLApp)
-};
-
-
-#endif
- // wxUSE_GLCANVAS
-