diff options
author | wm4 <wm4@nowhere> | 2015-01-08 02:19:12 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-01-08 02:19:12 +0100 |
commit | f52ec079b22a4dae732f759ac29746d1d7ca3076 (patch) | |
tree | dd6fa2c36e3ca5000247297dd5143f003516f13f | |
parent | d6aac7f9308b868d7a6d073814d6eec3cda0ed6c (diff) | |
download | mpv-f52ec079b22a4dae732f759ac29746d1d7ca3076.tar.bz2 mpv-f52ec079b22a4dae732f759ac29746d1d7ca3076.tar.xz |
vo_opengl_cb: fix flipped rendering
Oops.
-rw-r--r-- | video/out/vo_opengl_cb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/vo_opengl_cb.c b/video/out/vo_opengl_cb.c index 7785661ff8..a5716627ca 100644 --- a/video/out/vo_opengl_cb.c +++ b/video/out/vo_opengl_cb.c @@ -232,6 +232,7 @@ int mpv_opengl_cb_render(struct mpv_opengl_cb_context *ctx, int fbo, int vp[4]) if (ctx->force_update && vo) { ctx->force_update = false; ctx->wnd = wnd; + ctx->flip = flip; struct mp_rect src, dst; struct mp_osd_res osd; |