From 08b27bb3b86a025622c10d5bc5f46c44adc0f21d Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Fri, 16 Aug 2013 23:41:45 +0000 Subject: [PATCH] In the EGL backend context interface, don't call eglMakeCurrent. This was only done to pull in some information to the info log. This is necessary since eglMakeCurrent binds the context to the current thread and we need to destroy the context and reinitialize it when jumping to a new thread. We already call MakeCurrent in Video_Prepare which is done in the new thread. --- Source/Core/DolphinWX/Src/GLInterface/EGL.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Source/Core/DolphinWX/Src/GLInterface/EGL.cpp b/Source/Core/DolphinWX/Src/GLInterface/EGL.cpp index b5560d1ed7..b8276ae546 100644 --- a/Source/Core/DolphinWX/Src/GLInterface/EGL.cpp +++ b/Source/Core/DolphinWX/Src/GLInterface/EGL.cpp @@ -132,17 +132,6 @@ bool cInterfaceEGL::Create(void *&window_handle) exit(1); } - if (!eglMakeCurrent(GLWin.egl_dpy, GLWin.egl_surf, GLWin.egl_surf, GLWin.egl_ctx)) { - - INFO_LOG(VIDEO, "Error: eglMakeCurrent() failed\n"); - return false; - } - - INFO_LOG(VIDEO, "GL_VENDOR: %s\n", glGetString(GL_VENDOR)); - INFO_LOG(VIDEO, "GL_RENDERER: %s\n", glGetString(GL_RENDERER)); - INFO_LOG(VIDEO, "GL_VERSION: %s\n", glGetString(GL_VERSION)); - INFO_LOG(VIDEO, "GL_EXTENSIONS: %s\n", glGetString(GL_EXTENSIONS)); - Platform.ToggleFullscreen(SConfig::GetInstance().m_LocalCoreStartupParameter.bFullscreen); window_handle = (void *)GLWin.native_window;