mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
vulkan/pipeline: Hash null descriptor robustness info
Fixes: 6ae401aa86 ("vulkan: Add null descriptor bits to vk_pipeline_robustness_state")
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34967>
This commit is contained in:
parent
a6675f35b2
commit
347e957b44
1 changed files with 4 additions and 0 deletions
|
|
@ -256,6 +256,10 @@ vk_pipeline_hash_shader_stage(VkPipelineCreateFlags2KHR pipeline_flags,
|
|||
_mesa_sha1_update(&ctx, &rstate->uniform_buffers, sizeof(rstate->uniform_buffers));
|
||||
_mesa_sha1_update(&ctx, &rstate->vertex_inputs, sizeof(rstate->vertex_inputs));
|
||||
_mesa_sha1_update(&ctx, &rstate->images, sizeof(rstate->images));
|
||||
_mesa_sha1_update(&ctx, &rstate->null_uniform_buffer_descriptor,
|
||||
sizeof(rstate->null_uniform_buffer_descriptor));
|
||||
_mesa_sha1_update(&ctx, &rstate->null_storage_buffer_descriptor,
|
||||
sizeof(rstate->null_storage_buffer_descriptor));
|
||||
}
|
||||
|
||||
_mesa_sha1_update(&ctx, info->pName, strlen(info->pName));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue