Module: Mesa Branch: main Commit: ba670f0cdfd99bb3c0f46b111191388d324a0f35 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ba670f0cdfd99bb3c0f46b111191388d324a0f35
Author: Lionel Landwerlin <[email protected]> Date: Tue Mar 28 12:52:21 2023 +0300 anv: hash immutable sampler conversion data not pointers The conversion pointer has a vk_object_base containing pointers. Previous commits had a similar issue, storing an internal pointer to the array of formats in anv_format.c Signed-off-by: Lionel Landwerlin <[email protected]> Cc: mesa-stable Reviewed-by: Marcin Ĺšlusarz <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22160> --- src/intel/vulkan/anv_descriptor_set.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/intel/vulkan/anv_descriptor_set.c b/src/intel/vulkan/anv_descriptor_set.c index 84c2dc6796c..128d035ed4e 100644 --- a/src/intel/vulkan/anv_descriptor_set.c +++ b/src/intel/vulkan/anv_descriptor_set.c @@ -696,8 +696,7 @@ sha1_update_immutable_sampler(struct mesa_sha1 *ctx, return; /* The only thing that affects the shader is ycbcr conversion */ - _mesa_sha1_update(ctx, sampler->conversion, - sizeof(*sampler->conversion)); + SHA1_UPDATE_VALUE(ctx, sampler->conversion->state); } static void
