radv: write the alpha channel of MRT0 when alpha coverage is enabled
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>
Fri, 15 Feb 2019 17:02:52 +0000 (18:02 +0100)
committerSamuel Pitoiset <samuel.pitoiset@gmail.com>
Mon, 18 Feb 2019 11:14:22 +0000 (12:14 +0100)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109597
Cc: 18.3 19.0 <mesa-stable@lists.freedesktop.org>
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
src/amd/vulkan/radv_pipeline.c

index 9745a1f2aa7292d5698dfe9f5ec91b7593482f0f..6b54da2e31bfb2e186a7292703a0b670757a14ab 100644 (file)
@@ -511,6 +511,13 @@ radv_pipeline_compute_spi_color_formats(struct radv_pipeline *pipeline,
 
                if (subpass->color_attachments[i].attachment == VK_ATTACHMENT_UNUSED) {
                        cf = V_028714_SPI_SHADER_ZERO;
+
+                       if (blend->need_src_alpha & (1 << i)) {
+                               /* Write the alpha channel of MRT0 when alpha coverage is
+                                * enabled because the depth attachment needs it.
+                                */
+                               col_format |= V_028714_SPI_SHADER_32_ABGR;
+                       }
                } else {
                        struct radv_render_pass_attachment *attachment = pass->attachments + subpass->color_attachments[i].attachment;
                        bool blend_enable =
@@ -689,6 +696,7 @@ radv_pipeline_init_blend_state(struct radv_pipeline *pipeline,
 
        if (vkms && vkms->alphaToCoverageEnable) {
                blend.db_alpha_to_mask |= S_028B70_ALPHA_TO_MASK_ENABLE(1);
+               blend.need_src_alpha |= 0x1;
        }
 
        blend.cb_target_mask = 0;