From 6de7db9a4e0800c0bfe0773cc4a5bc7a3733c5a3 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Mon, 21 Sep 2015 08:04:40 +0000 Subject: [PATCH] gl/dispmanx: fix rendering with recent resize state tracking 557ca6fda5f831be4aba5819bf7b30b296e575cd didn't change to the necessary gst_gl_window_resize() call for the dispmanx backend. --- gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c b/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c index 26e6df7..f4a5ae0 100644 --- a/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c +++ b/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c @@ -236,8 +236,7 @@ window_resize (GstGLWindowDispmanxEGL * window_egl, guint width, guint height, vc_dispmanx_update_submit_sync (dispman_update); - if (window->resize) - window->resize (window->resize_data, width, height); + gst_gl_window_resize (window, width, height); } window_egl->native.width = width; -- 2.7.4