anv: drop a set but unused variable

Fixes a warning with clang

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14790>
This commit is contained in:
Thomas H.P. Andersen 2021-12-26 01:07:47 +01:00 committed by Marge Bot
parent e7e3e2072c
commit bdfb1885b8
1 changed files with 0 additions and 2 deletions

View File

@ -1199,7 +1199,6 @@ anv_descriptor_set_create(struct anv_device *device,
sizeof(struct anv_descriptor) * set->descriptor_count);
/* Go through and fill out immutable samplers if we have any */
struct anv_descriptor *desc = set->descriptors;
for (uint32_t b = 0; b < layout->binding_count; b++) {
if (layout->binding[b].immutable_samplers) {
for (uint32_t i = 0; i < layout->binding[b].array_size; i++) {
@ -1218,7 +1217,6 @@ anv_descriptor_set_create(struct anv_device *device,
b, i);
}
}
desc += layout->binding[b].array_size;
}
/* Allocate surface state for the buffer views. */