radeonsi: fix RB+ blending with sRGB formats
The epsilon for 8bpc is for the linear colorspace. There is no epsilon
for sRGB.
Fixes: 17021efc74 - radeonsi: adjust RB+ blend optimization settings
Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21041>
This commit is contained in:
@@ -193,7 +193,8 @@ static void si_emit_cb_render_state(struct si_context *sctx)
|
||||
spi_format == V_028714_SPI_SHADER_UINT16_ABGR ||
|
||||
spi_format == V_028714_SPI_SHADER_SINT16_ABGR) {
|
||||
sx_ps_downconvert |= V_028754_SX_RT_EXPORT_8_8_8_8 << (i * 4);
|
||||
sx_blend_opt_epsilon |= V_028758_8BIT_FORMAT << (i * 4);
|
||||
if (G_028C70_NUMBER_TYPE(surf->cb_color_info) != V_028C70_NUMBER_SRGB)
|
||||
sx_blend_opt_epsilon |= V_028758_8BIT_FORMAT << (i * 4);
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user