anv: Remove ignored qualifier
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Reported by clang's `-Wignored-qualifiers`.

Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34014>
This commit is contained in:
Matt Turner 2025-03-11 22:42:42 -04:00 committed by Marge Bot
parent 5a76ce6a6e
commit a6c717d006
2 changed files with 3 additions and 3 deletions

View file

@ -2755,7 +2755,7 @@ anv_physical_device_destroy(struct vk_physical_device *vk_device)
vk_free(&device->instance->vk.alloc, device);
}
static const VkQueueFamilyProperties
static VkQueueFamilyProperties
get_anv_queue_family_properties_template(const struct anv_physical_device *device)
{

View file

@ -1660,7 +1660,7 @@ load_indirect_parameters(struct anv_cmd_buffer *cmd_buffer,
#endif
}
static const inline bool
static inline bool
execute_indirect_draw_supported(const struct anv_cmd_buffer *cmd_buffer)
{
#if GFX_VERx10 >= 125
@ -1764,7 +1764,7 @@ emit_indirect_draws(struct anv_cmd_buffer *cmd_buffer,
}
}
static inline const uint32_t xi_argument_format_for_vk_cmd(enum vk_cmd_type cmd)
static inline uint32_t xi_argument_format_for_vk_cmd(enum vk_cmd_type cmd)
{
#if GFX_VERx10 >= 125
switch (cmd) {