[Mesa-stable] [PATCH] radv: Disable HTILE for textures with multiple layers/levels.
Bas Nieuwenhuizen
bas at basnieuwenhuizen.nl
Mon Mar 6 22:29:18 UTC 2017
It has issues and the fix I'm working on is too complicated for stable,
so disable for now.
Signed-off-by: Bas Nieuwenhuizen <basni at google.com>
CC: 13.0 17.0 <mesa-stable at lists.freedesktop.org>
---
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 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)
--
2.11.1
More information about the mesa-stable
mailing list