mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 23:30:10 +01:00
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:
parent
7a4fb0ab73
commit
6515a63410
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue