From a435ec43ec32d4ba7a4aa026ff4b4fa5f54821c6 Mon Sep 17 00:00:00 2001 From: Matthew Allum Date: Mon, 14 Apr 2008 17:01:14 +0000 Subject: [PATCH] 2008-04-14 Matthew Allum * clutter/eglx/clutter-stage-egl.c: Actually set wm protocols on eglx stage windows. Fixes issues with cloising stages and cleanup. --- ChangeLog | 6 ++++++ clutter/eglx/clutter-stage-egl.c | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 565b853..b08df76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2008-04-14 Matthew Allum + * clutter/eglx/clutter-stage-egl.c: + Actually set wm protocols on eglx stage windows. Fixes issues with + cloising stages and cleanup. + +2008-04-14 Matthew Allum + * clutter/cogl/gles/cogl.c: (cogl_color): Disable use of color4ub, issues with latest MBX SDL (#857) diff --git a/clutter/eglx/clutter-stage-egl.c b/clutter/eglx/clutter-stage-egl.c index 684de9e..4cca022 100644 --- a/clutter/eglx/clutter-stage-egl.c +++ b/clutter/eglx/clutter-stage-egl.c @@ -65,7 +65,7 @@ clutter_stage_egl_unrealize (ClutterActor *actor) clutter_stage_ensure_current (stage_x11->wrapper); - /* XSync (stage_x11->xdpy, False); */ + XSync (stage_x11->xdpy, False); clutter_x11_untrap_x_errors (); @@ -138,6 +138,10 @@ clutter_stage_egl_realize (ClutterActor *actor) | ButtonReleaseMask | PropertyChangeMask); + /* FIXME, do these in a clutterstage_x11_realise? */ + clutter_stage_x11_fix_window_size (stage_x11); + clutter_stage_x11_set_wm_protocols (stage_x11); + if (stage_egl->egl_surface != EGL_NO_SURFACE) { eglDestroySurface (backend_egl->edpy, stage_egl->egl_surface); -- 2.7.4