[vlc-devel] [PATCH 08/15] xcb: handle VOUT_DISPLAY_CHANGE_VIEWPOINT events
Steve Lhomme
robux4 at videolabs.io
Fri Nov 4 18:08:51 CET 2016
---
modules/video_output/xcb/glx.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/modules/video_output/xcb/glx.c b/modules/video_output/xcb/glx.c
index 469f9ec..f545e9f 100644
--- a/modules/video_output/xcb/glx.c
+++ b/modules/video_output/xcb/glx.c
@@ -247,6 +247,13 @@ static int Control (vout_display_t *vd, int query, va_list ap)
xcb_flush (sys->conn);
return VLC_SUCCESS;
+ case VOUT_DISPLAY_CHANGE_VIEWPOINT:
+ {
+ const vout_display_cfg_t *p_cfg = va_arg (ap, const vout_display_cfg_t *);
+ vout_display_opengl_SetViewpoint(sys->vgl, &p_cfg->viewpoint);
+ return VLC_SUCCESS;
+ }
+
case VOUT_DISPLAY_RESET_PICTURES:
vlc_assert_unreachable ();
default:
--
2.10.1
More information about the vlc-devel
mailing list