Evas (wayland): Comment out eglTerminate (is causing hangs when

running under the current weston compositor).



SVN revision: 68518
This commit is contained in:
Christopher Michael 2012-02-28 21:57:59 +00:00
parent ee44c5d3dd
commit 720f7996ae
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,6 @@ struct _Render_Engine
int end;
int w, h;
int vsync;
};
struct _Render_Engine_GL_Surface

View File

@ -217,7 +217,9 @@ eng_window_free(Evas_GL_Wl_Window *gw)
{
if (context) eglDestroyContext(gw->egl_disp, context);
context = EGL_NO_CONTEXT;
eglTerminate(gw->egl_disp);
/* NB: This is causing an unknown hang when we run elm apps as
* wayland clients inside the weston compositor */
/* eglTerminate(gw->egl_disp); */
eglReleaseThread();
}
free(gw);