mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-27 14:28:22 +02:00
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:
parent
e46b43080b
commit
f35a0f3ba5
1 changed files with 3 additions and 0 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue