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.
This commit is contained in:
Grigori Goronzy 2014-02-17 11:33:37 +01:00 committed by wm4
parent 333d1045b7
commit 472bb04e9d
1 changed files with 1 additions and 1 deletions

View File

@ -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},