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
This commit is contained in:
Matthew Waters 2014-05-30 11:51:01 +10:00 committed by Tim-Philipp Müller
parent e425bd31a1
commit 384434b060

View file

@ -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);