From 0ab2dd361fd80c3840b1547cb7e05b4361eaf928 Mon Sep 17 00:00:00 2001 From: Bas Nieuwenhuizen Date: Mon, 6 Mar 2017 23:23:57 +0100 Subject: [PATCH] radv: Disable HTILE for textures with multiple layers/levels. It has issues and the fix I'm working on is too complicated for stable, so disable for now. Signed-off-by: Bas Nieuwenhuizen Reviewed-by: Dave Airlie CC: 13.0 17.0 --- src/amd/vulkan/radv_image.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index 461d668..b71d8b7 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -655,6 +655,9 @@ radv_image_alloc_htile(struct radv_device *device, if (device->debug_flags & RADV_DEBUG_NO_HIZ) return; + if (image->array_size > 1 || image->levels > 1) + return; + image->htile.size = radv_image_get_htile_size(device, image); if (!image->htile.size) -- 2.7.4