summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-26 16:50:31 +0100
committerwm4 <wm4@nowhere>2016-01-26 21:35:16 +0100
commitfc3ca14ef70476762e321eb80e037c02e4bb41b5 (patch)
treed8fb4957f866e8a00553e31185e802af56ffab4b /video
parentd8aeeaa4b15e9adbbd021614848c40d4ff264124 (diff)
downloadmpv-fc3ca14ef70476762e321eb80e037c02e4bb41b5.tar.bz2
mpv-fc3ca14ef70476762e321eb80e037c02e4bb41b5.tar.xz
vo_opengl: default to rgba16f FBOs on ANGLE
Although it has only 1 bit more precission than rgba10_a2, it was reported to improve the visual quality.
Diffstat (limited to 'video')
-rw-r--r--video/out/opengl/video.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c
index c646a6306a..283a7cf0e5 100644
--- a/video/out/opengl/video.c
+++ b/video/out/opengl/video.c
@@ -2421,8 +2421,11 @@ static void check_gl_features(struct gl_video *p)
bool have_texrg = gl->mpgl_caps & MPGL_CAP_TEX_RG;
if (have_fbo) {
- if (!p->opts.fbo_format)
- p->opts.fbo_format = gl->es ? GL_RGB10_A2 : GL_RGBA16;
+ if (!p->opts.fbo_format) {
+ p->opts.fbo_format = GL_RGBA16;
+ if (gl->es)
+ p->opts.fbo_format = have_float_tex ? GL_RGBA16F : GL_RGB10_A2;
+ }
have_fbo = test_fbo(p);
}