X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/564a150b1f7c63a060c1b205a7cd50035031cd4b..052d2fc5818243dadbc1ec54b1120e295304fc55:/src/gtk1/glcanvas.cpp?ds=sidebyside diff --git a/src/gtk1/glcanvas.cpp b/src/gtk1/glcanvas.cpp index 88018d4bb8..e5f769403b 100644 --- a/src/gtk1/glcanvas.cpp +++ b/src/gtk1/glcanvas.cpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: gtk/glcanvas.cpp -// Purpose: wxGLCanvas, for using OpenGL/Mesa with wxWindows and GTK +// Purpose: wxGLCanvas, for using OpenGL/Mesa with wxWidgets and GTK // Author: Robert Roebling // Modified by: // Created: 17/08/98 @@ -160,10 +160,16 @@ wxPalette wxGLContext::CreateDefaultPalette() static gint gtk_glwindow_realized_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win ) { - wxGLContext *share= win->m_sharedContext; - if (share==NULL && win->m_sharedContextOf) share=win->m_sharedContextOf->GetContext(); + // VZ: apparently in some cases we're called twice -- no idea why, + // but a check doesn't hurt + if ( !win->m_glContext ) + { + wxGLContext *share = win->m_sharedContext; + if ( !share && win->m_sharedContextOf ) + share = win->m_sharedContextOf->GetContext(); - win->m_glContext = new wxGLContext( TRUE, win, wxNullPalette, share ); + win->m_glContext = new wxGLContext( TRUE, win, wxNullPalette, share ); + } return FALSE; } @@ -316,7 +322,7 @@ bool wxGLCanvas::Create( wxWindow *parent, wxCHECK_MSG( m_vi, FALSE, _T("required visual couldn't be found") ); GdkVisual *visual = gdkx_visual_get( vi->visualid ); - GdkColormap *colormap = gdk_colormap_new( gdkx_visual_get(vi->visualid), TRUE ); + GdkColormap *colormap = gdk_colormap_new( visual, TRUE ); gtk_widget_push_colormap( colormap ); gtk_widget_push_visual( visual ); @@ -365,7 +371,7 @@ wxGLCanvas::~wxGLCanvas() XVisualInfo *vi = (XVisualInfo *) m_vi; if (vi && m_canFreeVi) XFree( vi ); - if (m_glContext) delete m_glContext; + delete m_glContext; } void* wxGLCanvas::ChooseGLVisual(int *attribList)