From 472bb04e9d02ef63ad51fd15409aac8e7340cd10 Mon Sep 17 00:00:00 2001 From: Grigori Goronzy Date: Mon, 17 Feb 2014 11:33:37 +0100 Subject: vo_opengl: use GL_RGBA16 FBO format for HQ GL_RGB16 is definitely not a required format, after review of the OpenGL 3.3 spec. Most HW doesn't have native support for RGB16 anyway. --- video/out/gl_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video') diff --git a/video/out/gl_video.c b/video/out/gl_video.c index 0f50403687..af1d3e166b 100644 --- a/video/out/gl_video.c +++ b/video/out/gl_video.c @@ -291,7 +291,7 @@ const struct gl_video_opts gl_video_opts_hq_def = { .npot = 1, .dither_depth = 0, .dither_size = 6, - .fbo_format = GL_RGB16, + .fbo_format = GL_RGBA16, .scale_sep = 1, .scalers = { "lanczos2", "bilinear" }, .scaler_params = {NAN, NAN}, -- cgit v1.2.3