anv: fix missing bindless flag hashing

It got dropped in a rebase it seems...

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: mesa-stable
Reviewed-by: Ivan Briano <ivan.briano@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41711>
This commit is contained in:
Lionel Landwerlin 2026-05-20 16:44:42 +03:00 committed by Marge Bot
parent e46b43080b
commit f35a0f3ba5

View file

@ -239,6 +239,9 @@ anv_shader_init_uuid(struct anv_physical_device *device)
blake3_hasher ctx;
_mesa_blake3_init(&ctx);
const bool always_bindless = !!ANV_DEBUG(BINDLESS);
_mesa_blake3_update(&ctx, &always_bindless, sizeof(always_bindless));
const bool indirect_descriptors = device->indirect_descriptors;
_mesa_blake3_update(&ctx, &indirect_descriptors, sizeof(indirect_descriptors));