summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/en/vo.rst2
-rw-r--r--libvo/vo_opengl.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/DOCS/man/en/vo.rst b/DOCS/man/en/vo.rst
index e48f53d47c..d3dcf7f388 100644
--- a/DOCS/man/en/vo.rst
+++ b/DOCS/man/en/vo.rst
@@ -456,7 +456,7 @@ opengl-hq
This is equivalent to:
- | --vo=opengl:lscale=lanczos2:fancy-downscaling:dither-depth=0:pbo:fbo-format=rgb16
+ | --vo=opengl:lscale=lanczos2:dither-depth=0:pbo:fbo-format=rgb16
Note that some cheaper LCDs do dithering that gravely interferes with
vo_opengl's dithering. Disabling dithering with ``dither-depth=-1`` helps.
diff --git a/libvo/vo_opengl.c b/libvo/vo_opengl.c
index 04a3559be5..4000f55c56 100644
--- a/libvo/vo_opengl.c
+++ b/libvo/vo_opengl.c
@@ -2148,7 +2148,6 @@ static int preinit(struct vo *vo, const char *arg)
.dither_depth = hq ? 0 : -1,
.fbo_format = hq ? GL_RGB16 : GL_RGB,
.use_scale_sep = 1,
- .use_fancy_downscaling = hq,
.scalers = {
{ .index = 0, .name = hq ? "lanczos2" : "bilinear" },
{ .index = 1, .name = "bilinear" },