removed explicit calls to gtk_glwindow_(realized/map)_callback() as they should be called by GTK+ itself anyhow
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -160,8 +160,6 @@ wxPalette wxGLContext::CreateDefaultPalette()
|
||||
static gint
|
||||
gtk_glwindow_realized_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win )
|
||||
{
|
||||
// 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;
|
||||
@@ -357,12 +355,6 @@ bool wxGLCanvas::Create( wxWindow *parent,
|
||||
gtk_widget_pop_visual();
|
||||
gtk_widget_pop_colormap();
|
||||
|
||||
if (GTK_WIDGET_REALIZED(m_wxwindow))
|
||||
gtk_glwindow_realized_callback( m_wxwindow, this );
|
||||
|
||||
if (GTK_WIDGET_MAPPED(m_wxwindow))
|
||||
gtk_glwindow_map_callback( m_wxwindow, this );
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user