diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-08-08 01:59:51 +0300 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-08-07 18:59:50 -0400 |
commit | 7139f05fc576bd6673c3f58597c017f584c44053 (patch) | |
tree | 39d6bfaefe7542742f164619814b0d3503d9b50d | |
parent | b9829a05bec6118b3ba96b3fc1de06a7215b3f3d (diff) |
Fixed the sRGB pixel format (#963)
* Changed the sRGB pixel format return
* Add a message about SRGBA -> RGBA conversion
-rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.h b/src/video_core/renderer_opengl/gl_rasterizer_cache.h index 39fcf22b4..0c6652c7a 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.h +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.h @@ -204,8 +204,9 @@ struct SurfaceParams { static PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format) { switch (format) { + // TODO (Hexagon12): Converting SRGBA to RGBA is a hack and doesn't completely correct the + // gamma. case Tegra::RenderTargetFormat::RGBA8_SRGB: - return PixelFormat::SRGBA8; case Tegra::RenderTargetFormat::RGBA8_UNORM: return PixelFormat::ABGR8; case Tegra::RenderTargetFormat::BGRA8_UNORM: |