summaryrefslogtreecommitdiffstats
path: root/video/out/vo_opengl.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-01-20 14:02:17 +0100
committerwm4 <wm4@nowhere>2017-01-20 14:03:34 +0100
commitfd203ff16a97b97acf428f8ab53d8b31eb8fae99 (patch)
treeaf6bd1f5591c627d3f523a7787b5e251178df568 /video/out/vo_opengl.c
parentd890e0731c0a0c002c32e8be89130e178059d3ba (diff)
downloadmpv-fd203ff16a97b97acf428f8ab53d8b31eb8fae99.tar.bz2
mpv-fd203ff16a97b97acf428f8ab53d8b31eb8fae99.tar.xz
options: refacactor how --opengl-dwmflush is declared
Same deal as previous commit, except this time we just readd it as lone global option, and read it directly.
Diffstat (limited to 'video/out/vo_opengl.c')
-rw-r--r--video/out/vo_opengl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c
index 72e889931e..4917a251c6 100644
--- a/video/out/vo_opengl.c
+++ b/video/out/vo_opengl.c
@@ -54,7 +54,6 @@ struct vo_opengl_opts {
int use_gl_debug;
int allow_sw;
int swap_interval;
- int dwm_flush;
int vsync_fences;
char *backend;
int es;
@@ -387,8 +386,6 @@ static int preinit(struct vo *vo)
goto err_out;
p->gl = p->glctx->gl;
- p->glctx->dwm_flush_opt = p->opts.dwm_flush;
-
if (p->gl->SwapInterval) {
p->gl->SwapInterval(p->opts.swap_interval);
} else {
@@ -438,8 +435,6 @@ const struct vo_driver video_out_opengl = {
OPT_FLAG("opengl-glfinish", opts.use_glFinish, 0),
OPT_FLAG("opengl-waitvsync", opts.waitvsync, 0),
OPT_INT("opengl-swapinterval", opts.swap_interval, 0),
- OPT_CHOICE("opengl-dwmflush", opts.dwm_flush, 0,
- ({"no", -1}, {"auto", 0}, {"windowed", 1}, {"yes", 2})),
OPT_FLAG("opengl-debug", opts.use_gl_debug, 0),
OPT_STRING_VALIDATE("opengl-backend", opts.backend, 0,
mpgl_validate_backend_opt),