aboutsummaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2017-09-29 17:11:12 +0200
committerSamuel Pitoiset <[email protected]>2017-10-02 11:56:20 +0200
commit6f1447c09021bee9d4c442a1c8395ea8a90e4559 (patch)
treea1c8bfb4e44a18cf8a834bb4098c93ed4bd33fe3 /src/amd/vulkan
parent06dbe0722f8109d8cc7b1c7edf0dc3d4ce6f0d08 (diff)
radv: do not check the number of levels when doing fast htile
We shouldn't reach this point because HTILE is only enabled when the number of levels is 1. Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r--src/amd/vulkan/radv_meta_clear.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_meta_clear.c b/src/amd/vulkan/radv_meta_clear.c
index 64d3bac7f1b..1133024d588 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;