summaryrefslogtreecommitdiffstats
path: root/video/out/vo_opengl.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_opengl.c')
-rw-r--r--video/out/vo_opengl.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c
index d3f1e7da7d..6a2a48fb47 100644
--- a/video/out/vo_opengl.c
+++ b/video/out/vo_opengl.c
@@ -303,7 +303,7 @@ static bool reparse_cmdline(struct gl_priv *p, char *args)
if (r >= 0) {
mpgl_lock(p->glctx);
gl_video_set_options(p->renderer, opts->renderer_opts);
- resize(p);
+ vo_set_flip_queue_params(p->vo, 0, opts->renderer_opts->smoothmotion);
mpgl_unlock(p->glctx);
}
@@ -375,9 +375,6 @@ static int control(struct vo *vo, uint32_t request, void *data)
char *arg = data;
return reparse_cmdline(p, arg);
}
- case VOCTRL_GET_VSYNC_TIMED:
- *(bool *)data = p->renderer_opts->smoothmotion;
- return VO_TRUE;
case VOCTRL_RESET:
mpgl_lock(p->glctx);
gl_video_reset(p->renderer);
@@ -443,6 +440,7 @@ static int preinit(struct vo *vo)
gl_video_set_output_depth(p->renderer, p->glctx->depth_r, p->glctx->depth_g,
p->glctx->depth_b);
gl_video_set_options(p->renderer, p->renderer_opts);
+ vo_set_flip_queue_params(vo, 0, p->renderer_opts->smoothmotion);
p->cms = gl_lcms_init(p, vo->log, vo->global);
if (!p->cms)