diff --git a/src/freedreno/vulkan/tu_device.cc b/src/freedreno/vulkan/tu_device.cc index 9b602c66769..ff5a167836d 100644 --- a/src/freedreno/vulkan/tu_device.cc +++ b/src/freedreno/vulkan/tu_device.cc @@ -71,6 +71,8 @@ tu_device_get_cache_uuid(struct tu_physical_device *device, void *uuid) _mesa_blake3_update(&ctx, &driver_flags, sizeof(driver_flags)); _mesa_blake3_update(&ctx, &device->uche_trap_base, sizeof(device->uche_trap_base)); _mesa_blake3_final(&ctx, blake3); + _mesa_blake3_update(&ctx, &device->instance->allow_oob_indirect_ubo_loads, + sizeof(device->instance->allow_oob_indirect_ubo_loads)); memcpy(uuid, blake3, VK_UUID_SIZE); return 0;