summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-10-23 17:50:49 +0200
committerwm4 <wm4@nowhere>2013-10-23 17:50:49 +0200
commita37c81017320997dc7bcf8d290b31851c4b19bb5 (patch)
tree0d55ccc7c47905b5f8c29159a7b4daf1c5dcb052 /video
parent68531e23a1026253aa85e4ac84b8dd6898a0462e (diff)
downloadmpv-a37c81017320997dc7bcf8d290b31851c4b19bb5.tar.bz2
mpv-a37c81017320997dc7bcf8d290b31851c4b19bb5.tar.xz
vo_opengl: don't enable PBOs with opengl-hq
The speed advantages are marginal (at least with the way it's currently used), and it might actually be slower on some drivers, like Mesa.
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_opengl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c
index 03d1689667..4a67231770 100644
--- a/video/out/vo_opengl.c
+++ b/video/out/vo_opengl.c
@@ -383,5 +383,5 @@ const struct vo_driver video_out_opengl_hq = {
.uninit = uninit,
.priv_size = sizeof(struct gl_priv),
.options = options,
- .init_option_string = "lscale=lanczos2:dither-depth=auto:pbo:fbo-format=rgb16",
+ .init_option_string = "lscale=lanczos2:dither-depth=auto:fbo-format=rgb16",
};