[Mesa-dev] [PATCH 18/19] radv: do not check the number of levels when doing fast htile

Samuel Pitoiset samuel.pitoiset at gmail.com
Fri Sep 29 15:49:05 UTC 2017


We shouldn't reach this point because HTILE is only enabled
when the number of levels is 1.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
 src/amd/vulkan/radv_meta_clear.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/amd/vulkan/radv_meta_clear.c b/src/amd/vulkan/radv_meta_clear.c
index bc0b26f1a4..aa252ac28a 100644
--- a/src/amd/vulkan/radv_meta_clear.c
+++ b/src/amd/vulkan/radv_meta_clear.c
@@ -693,9 +693,6 @@ emit_fast_htile_clear(struct radv_cmd_buffer *cmd_buffer,
 	if (iview->image->info.array_size != iview->layer_count)
 		goto fail;
 
-	if (iview->image->info.levels > 1)
-		goto fail;
-
 	if (!radv_image_extent_compare(iview->image, &iview->extent))
 		goto fail;
 
-- 
2.14.2



More information about the mesa-dev mailing list