Back out wxGLAttributes update until needed.

This commit is contained in:
Charles J. Cliffe
2016-04-07 20:00:59 -04:00
parent 4a64104050
commit 9ac31040d5
19 changed files with 24 additions and 23 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ EVT_LEAVE_WINDOW(UITestCanvas::OnMouseLeftWindow)
EVT_ENTER_WINDOW(UITestCanvas::OnMouseEnterWindow)
wxEND_EVENT_TABLE()
UITestCanvas::UITestCanvas(wxWindow *parent, const wxGLAttributes& dispAttrs) :
UITestCanvas::UITestCanvas(wxWindow *parent, int *dispAttrs) :
InteractiveCanvas(parent, dispAttrs) {
glContext = new UITestContext(this, &wxGetApp().GetContext(this));
+1 -1
View File
@@ -14,7 +14,7 @@
class UITestCanvas: public InteractiveCanvas {
public:
UITestCanvas(wxWindow *parent, const wxGLAttributes& dispAttrs);
UITestCanvas(wxWindow *parent, int *dispAttrs);
~UITestCanvas();
private: