From 1a1747712c40e4ba29bdad3af2b27bf0aa56e107 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Tue, 14 Nov 2023 09:15:21 +0200 Subject: [PATCH] anv: fix source_hash propagation with libraries Signed-off-by: Lionel Landwerlin Reviewed-by: Ian Romanick Part-of: --- src/intel/vulkan/anv_pipeline.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 0c6a9fbb822..5073b9c63e6 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -1854,6 +1854,7 @@ anv_graphics_pipeline_load_cached_shaders(struct anv_graphics_base_pipeline *pip continue; pipeline->shaders[s] = anv_shader_bin_ref(stages[s].imported.bin); + pipeline->source_hashes[s] = stages[s].source_hash; imported++; } }