mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
anv/image: remove unused parameter
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
352e297091
commit
ee8d65c25a
1 changed files with 2 additions and 3 deletions
|
|
@ -245,7 +245,6 @@ all_formats_ccs_e_compatible(const struct gen_device_info *devinfo,
|
|||
*/
|
||||
static void
|
||||
add_aux_state_tracking_buffer(struct anv_image *image,
|
||||
VkImageAspectFlagBits aspect,
|
||||
uint32_t plane,
|
||||
const struct anv_device *device)
|
||||
{
|
||||
|
|
@ -463,7 +462,7 @@ make_surface(const struct anv_device *dev,
|
|||
}
|
||||
|
||||
add_surface(image, &image->planes[plane].aux_surface, plane);
|
||||
add_aux_state_tracking_buffer(image, aspect, plane, dev);
|
||||
add_aux_state_tracking_buffer(image, plane, dev);
|
||||
|
||||
/* For images created without MUTABLE_FORMAT_BIT set, we know that
|
||||
* they will always be used with the original format. In
|
||||
|
|
@ -487,7 +486,7 @@ make_surface(const struct anv_device *dev,
|
|||
&image->planes[plane].aux_surface.isl);
|
||||
if (ok) {
|
||||
add_surface(image, &image->planes[plane].aux_surface, plane);
|
||||
add_aux_state_tracking_buffer(image, aspect, plane, dev);
|
||||
add_aux_state_tracking_buffer(image, plane, dev);
|
||||
image->planes[plane].aux_usage = ISL_AUX_USAGE_MCS;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue