mirror of https://github.com/mpv-player/mpv
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:
parent
333d1045b7
commit
472bb04e9d
|
@ -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},
|
||||
|
|
Loading…
Reference in New Issue