From 1f90323a4dbe01f24d46a7dfde4642842f1ba1c3 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Fri, 30 May 2014 11:51:01 +1000 Subject: [PATCH] glwindow_x11: allow expose events to redraw our window otherwise we will not update the window contents on low framerate streams until the next buffer https://bugzilla.gnome.org/show_bug.cgi?id=723529 --- gst-libs/gst/gl/x11/gstglwindow_x11.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gst-libs/gst/gl/x11/gstglwindow_x11.c b/gst-libs/gst/gl/x11/gstglwindow_x11.c index 490b27da56..d09701279e 100644 --- a/gst-libs/gst/gl/x11/gstglwindow_x11.c +++ b/gst-libs/gst/gl/x11/gstglwindow_x11.c @@ -544,12 +544,6 @@ gst_gl_window_x11_handle_event (GstGLWindowX11 * window_x11) break; } - /* just ignore request that does not come from us - * they are un-necessary and it overloads the drawer - */ - if (!event.xexpose.send_event) - break; - /* We need to redraw on expose */ if (window->draw) { context = gst_gl_window_get_context (window);