summaryrefslogtreecommitdiffstats
path: root/video/out
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-02-11 21:43:53 +0100
committerwm4 <wm4@nowhere>2020-02-11 21:43:53 +0100
commit2337e2861f20e426bce5babb01c9e64e293de9d9 (patch)
tree99179ccefde67c9d5d12254e6d2abf652ad6e0d3 /video/out
parent8c2179becfbda3253c34d5d71f5f095257830ac0 (diff)
downloadmpv-2337e2861f20e426bce5babb01c9e64e293de9d9.tar.bz2
mpv-2337e2861f20e426bce5babb01c9e64e293de9d9.tar.xz
vo_x11: don't call X11 "crap"
X11 is in fact beautiful and superior to Wayland. Instead, just state what the problem is in most cases: software scaling. (We have accelerated X11 rendering in vo_gpu and others.)
Diffstat (limited to 'video/out')
-rw-r--r--video/out/vo_x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_x11.c b/video/out/vo_x11.c
index f8a85d3e13..6c122d944b 100644
--- a/video/out/vo_x11.c
+++ b/video/out/vo_x11.c
@@ -428,7 +428,7 @@ static int control(struct vo *vo, uint32_t request, void *data)
}
const struct vo_driver video_out_x11 = {
- .description = "X11 (slow, old crap)",
+ .description = "X11 (software scaling)",
.name = "x11",
.priv_size = sizeof(struct priv),
.preinit = preinit,