summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2015-09-21 08:04:40 +0000
committerMatthew Waters <matthew@centricular.com>2015-09-21 18:11:21 +1000
commit46e83f5d506b92588d934bac56f024fa1d51505f (patch)
tree669068eac0a3f86bcb5e69f2e7ea380508daeae3
parenta2bdce8df3ba76587cb273d7d5aaed0d6dd39fbc (diff)
downloadgstreamer-plugins-bad-46e83f5d506b92588d934bac56f024fa1d51505f.tar.gz
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.
-rw-r--r--gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c3
1 files changed, 1 insertions, 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 26e6df7a9..f4a5ae0de 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;