radv: Stop using plane_count.

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8797>
This commit is contained in:
Bas Nieuwenhuizen 2021-01-30 22:06:25 +01:00 committed by Marge Bot
parent 7a4fb0ab73
commit 6515a63410

View file

@ -1458,7 +1458,7 @@ 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)
if (vk_format_get_plane_count(format) > 1)
goto unsupported;
}
@ -1467,7 +1467,7 @@ static VkResult radv_get_image_format_properties(struct radv_physical_device *ph
if (physical_device->rad_info.chip_class < GFX8)
goto unsupported;
if (desc->plane_count > 1 || info->type != VK_IMAGE_TYPE_2D ||
if (vk_format_get_plane_count(format) > 1 || info->type != VK_IMAGE_TYPE_2D ||
info->tiling != VK_IMAGE_TILING_OPTIMAL ||
vk_format_is_depth_or_stencil(format))
goto unsupported;