check for multiple calls to gtk_glwindow_realized_callback
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27097 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -160,10 +160,16 @@ wxPalette wxGLContext::CreateDefaultPalette()
|
|||||||
static gint
|
static gint
|
||||||
gtk_glwindow_realized_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win )
|
gtk_glwindow_realized_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win )
|
||||||
{
|
{
|
||||||
wxGLContext *share= win->m_sharedContext;
|
// VZ: apparently in some cases we're called twice -- no idea why,
|
||||||
if (share==NULL && win->m_sharedContextOf) share=win->m_sharedContextOf->GetContext();
|
// 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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
@@ -365,7 +371,7 @@ wxGLCanvas::~wxGLCanvas()
|
|||||||
XVisualInfo *vi = (XVisualInfo *) m_vi;
|
XVisualInfo *vi = (XVisualInfo *) m_vi;
|
||||||
|
|
||||||
if (vi && m_canFreeVi) XFree( vi );
|
if (vi && m_canFreeVi) XFree( vi );
|
||||||
if (m_glContext) delete m_glContext;
|
delete m_glContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
void* wxGLCanvas::ChooseGLVisual(int *attribList)
|
void* wxGLCanvas::ChooseGLVisual(int *attribList)
|
||||||
|
@@ -160,10 +160,16 @@ wxPalette wxGLContext::CreateDefaultPalette()
|
|||||||
static gint
|
static gint
|
||||||
gtk_glwindow_realized_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win )
|
gtk_glwindow_realized_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win )
|
||||||
{
|
{
|
||||||
wxGLContext *share= win->m_sharedContext;
|
// VZ: apparently in some cases we're called twice -- no idea why,
|
||||||
if (share==NULL && win->m_sharedContextOf) share=win->m_sharedContextOf->GetContext();
|
// 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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
@@ -365,7 +371,7 @@ wxGLCanvas::~wxGLCanvas()
|
|||||||
XVisualInfo *vi = (XVisualInfo *) m_vi;
|
XVisualInfo *vi = (XVisualInfo *) m_vi;
|
||||||
|
|
||||||
if (vi && m_canFreeVi) XFree( vi );
|
if (vi && m_canFreeVi) XFree( vi );
|
||||||
if (m_glContext) delete m_glContext;
|
delete m_glContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
void* wxGLCanvas::ChooseGLVisual(int *attribList)
|
void* wxGLCanvas::ChooseGLVisual(int *attribList)
|
||||||
|
Reference in New Issue
Block a user