diff options
-rw-r--r-- | DOCS/man/vo.rst | 2 | ||||
-rw-r--r-- | video/out/gl_video.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/DOCS/man/vo.rst b/DOCS/man/vo.rst index 1865d848bb..ef4a677c62 100644 --- a/DOCS/man/vo.rst +++ b/DOCS/man/vo.rst @@ -821,7 +821,7 @@ Available video output drivers are: This is equivalent to:: - --vo=opengl:scale=spline36:cscale=spline36:dscale=mitchell:dither-depth=auto:fancy-downscaling:sigmoid-upscaling + --vo=opengl:scale=spline36:cscale=spline36:dscale=mitchell:dither-depth=auto:fancy-downscaling:sigmoid-upscaling:pbo Note that some cheaper LCDs do dithering that gravely interferes with ``opengl``'s dithering. Disabling dithering with ``dither-depth=no`` helps. diff --git a/video/out/gl_video.c b/video/out/gl_video.c index ec6b966374..15bedbd9c5 100644 --- a/video/out/gl_video.c +++ b/video/out/gl_video.c @@ -365,6 +365,7 @@ const struct gl_video_opts gl_video_opts_hq_def = { .background = {0, 0, 0, 255}, .gamma = 1.0f, .blend_subs = 0, + .pbo = 1, }; static int validate_scaler_opt(struct mp_log *log, const m_option_t *opt, |