Mesa (master): radv: do not allow sparse resources with multi-planar formats

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Jan 27 16:02:49 UTC 2020


Module: Mesa
Branch: master
Commit: 83e1fa87a7e25b8e60f0817b09df8b54cfc38abd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=83e1fa87a7e25b8e60f0817b09df8b54cfc38abd

Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Mon Jan 27 15:17:25 2020 +0100

radv: do not allow sparse resources with multi-planar formats

It's unsupported.

Fixes some fails or hangs with
dEQP-VK.sparse_resources.image_sparse_binding.*

Cc: 19.3 <mesa-stable at lists.freedesktop.org>
Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3581>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3581>

---

 src/amd/vulkan/radv_formats.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c
index b5d1fa31ba7..67a9cb7bfe0 100644
--- a/src/amd/vulkan/radv_formats.c
+++ b/src/amd/vulkan/radv_formats.c
@@ -1248,6 +1248,12 @@ static VkResult radv_get_image_format_properties(struct radv_physical_device *ph
 		}
 	}
 
+	/* Sparse resources with multi-planar formats are unsupported. */
+	if (info->flags & VK_IMAGE_CREATE_SPARSE_BINDING_BIT) {
+		if (desc->plane_count > 1)
+			goto unsupported;
+	}
+
 	*pImageFormatProperties = (VkImageFormatProperties) {
 		.maxExtent = maxExtent,
 		.maxMipLevels = maxMipLevels,



More information about the mesa-commit mailing list