+/* static */
+bool wxGLCanvasBase::IsDisplaySupported(const int *attribList)
+{
+ AGLPixelFormat aglFormat = ChoosePixelFormat(attribList);
+
+ if ( !aglFormat )
+ return false;
+
+ aglDestroyPixelFormat(aglFormat);
+
+ return true;
+}
+
+bool wxGLCanvas::SwapBuffers()