mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
anv: Remove ignored qualifier
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:
parent
5a76ce6a6e
commit
a6c717d006
2 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue