From: Bas Nieuwenhuizen Date: Mon, 6 Mar 2017 22:23:57 +0000 (+0100) Subject: radv: Disable HTILE for textures with multiple layers/levels. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0ab2dd361fd80c3840b1547cb7e05b4361eaf928;p=mesa.git 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 --- diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index 461d6689c7d..b71d8b75a0b 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)