diff options
author | Neha Bhende <[email protected]> | 2017-05-04 11:25:04 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-09-05 11:22:42 -0600 |
commit | 53091a0312edf38a87a4b7a6e88b52e1887750ca (patch) | |
tree | 72433bcea31c2dede023d62c636293ceed947276 | |
parent | dfab1289e84978f594972d3c47332f4bc803379d (diff) |
svga: convert dst format to linear when blending is enabled.
When blending is enabled, framebuffer colorspace has to be linear.
Previously, we never hit this case because we were not supporting sRGB
drawable. Previous patch added that support.
Tested with mtt glretrace, viewperf, piglit, conform.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Charmaine Lee <[email protected]>
-rw-r--r-- | src/gallium/drivers/svga/svga_pipe_blit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_pipe_blit.c b/src/gallium/drivers/svga/svga_pipe_blit.c index bca0de3845d..d97f623870d 100644 --- a/src/gallium/drivers/svga/svga_pipe_blit.c +++ b/src/gallium/drivers/svga/svga_pipe_blit.c @@ -597,8 +597,10 @@ try_blit(struct svga_context *svga, const struct pipe_blit_info *blit_info) * If format is srgb and blend is enabled then color values need * to be converted into linear format. */ - if (is_blending_enabled(svga, &blit)) + if (is_blending_enabled(svga, &blit)) { blit.src.format = util_format_linear(blit.src.format); + blit.dst.format = util_format_linear(blit.dst.format); + } /* Check if we can create shader resource view and * render target view for the quad blitter to work |