diff options
author | wm4 <wm4@nowhere> | 2015-10-03 18:20:16 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-10-03 18:20:16 +0200 |
commit | 291f301c105ca989db6165108fd9dd1c57cde56d (patch) | |
tree | df9f106e86282f2978136dd6820fa76894ccae5f /video/out/vo_opengl.c | |
parent | e448e10fd7768c509c528f9291d372fa9760919d (diff) | |
download | mpv-291f301c105ca989db6165108fd9dd1c57cde56d.tar.bz2 mpv-291f301c105ca989db6165108fd9dd1c57cde56d.tar.xz |
video/out: remove an unused parameter
This parameter has been unused for years (the last flag was removed in
commit d658b115). Get rid of it.
This affects the general VO API, as well as the vo_opengl backend API,
so it touches a lot of files.
The VOFLAGs are still used to control OpenGL context creation, so move
them to the OpenGL backend code.
Diffstat (limited to 'video/out/vo_opengl.c')
-rw-r--r-- | video/out/vo_opengl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c index e547bd6346..5440fa1af2 100644 --- a/video/out/vo_opengl.c +++ b/video/out/vo_opengl.c @@ -173,11 +173,11 @@ static int query_format(struct vo *vo, int format) return 1; } -static int reconfig(struct vo *vo, struct mp_image_params *params, int flags) +static int reconfig(struct vo *vo, struct mp_image_params *params) { struct gl_priv *p = vo->priv; - if (!mpgl_reconfig_window(p->glctx, flags)) + if (mpgl_reconfig_window(p->glctx) < 0) return -1; resize(p); |