Mesa (master): radv: re-initialize DCC metadata after decompressing using compute

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Jun 20 09:02:21 UTC 2019


Module: Mesa
Branch: master
Commit: b92d87f7f0dc2dbd5b7a3d64a1a9a2863ab7262a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b92d87f7f0dc2dbd5b7a3d64a1a9a2863ab7262a

Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Thu Jun 20 09:17:33 2019 +0200

radv: re-initialize DCC metadata after decompressing using compute

Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>

---

 src/amd/vulkan/radv_meta_fast_clear.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/amd/vulkan/radv_meta_fast_clear.c b/src/amd/vulkan/radv_meta_fast_clear.c
index 0e6c7ba72ff..71cf90c611e 100644
--- a/src/amd/vulkan/radv_meta_fast_clear.c
+++ b/src/amd/vulkan/radv_meta_fast_clear.c
@@ -875,11 +875,9 @@ radv_decompress_dcc_compute(struct radv_cmd_buffer *cmd_buffer,
 	state->flush_bits |= RADV_CMD_FLAG_CS_PARTIAL_FLUSH |
 			     RADV_CMD_FLAG_INV_VMEM_L1;
 
-	state->flush_bits |= radv_clear_dcc(cmd_buffer, image, subresourceRange,
-					    0xffffffff);
 
-	state->flush_bits |= RADV_CMD_FLAG_FLUSH_AND_INV_CB |
-			     RADV_CMD_FLAG_FLUSH_AND_INV_CB_META;
+	/* Initialize the DCC metadata as "fully expanded". */
+	radv_initialize_dcc(cmd_buffer, image, subresourceRange, 0xffffffff);
 }
 
 void




More information about the mesa-commit mailing list