gl_texture_cache: Apply sRGB on blits

glBlitFramebuffer keeps in mind GL_FRAMEBUFFER_SRGB's state. Enable this
depending on the target surface pixel format.
This commit is contained in:
ReinUsesLisp 2019-11-24 18:13:24 -03:00
parent 6a3fc5d2ff
commit 74fff717aa
No known key found for this signature in database
GPG Key ID: 2DFC508897B39CFE

View File

@ -488,6 +488,7 @@ void TextureCacheOpenGL::ImageBlit(View& src_view, View& dst_view,
OpenGLState state;
state.draw.read_framebuffer = src_framebuffer.handle;
state.draw.draw_framebuffer = dst_framebuffer.handle;
state.framebuffer_srgb.enabled = dst_params.srgb_conversion;
state.AllDirty();
state.Apply();