anv: const-correct anv_{image,buffer}_is_sparse()

I had to do this in a debugging session when I wrote some extra code
to debug sparse issues. I also have a pending patch that will require
this.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28792>
This commit is contained in:
Paulo Zanoni 2024-01-25 12:32:47 -08:00 committed by Marge Bot
parent 1cca5e8b32
commit f3e97d30d9
1 changed files with 2 additions and 2 deletions

View File

@ -3130,7 +3130,7 @@ struct anv_buffer {
};
static inline bool
anv_buffer_is_sparse(struct anv_buffer *buffer)
anv_buffer_is_sparse(const struct anv_buffer *buffer)
{
return buffer->vk.create_flags & VK_BUFFER_CREATE_SPARSE_BINDING_BIT;
}
@ -5165,7 +5165,7 @@ struct anv_image {
};
static inline bool
anv_image_is_sparse(struct anv_image *image)
anv_image_is_sparse(const struct anv_image *image)
{
return image->vk.create_flags & VK_IMAGE_CREATE_SPARSE_BINDING_BIT;
}