radv: Fix loading stack_size from the cache

Fixes: 3e03fe4 ("radv/rt: move stack_sizes into radv_ray_tracing_module")
Reviewed-by: Friedrich Vock <friedrich.vock@gmx.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21969>
This commit is contained in:
Konstantin Seurer 2023-03-16 21:04:37 +01:00 committed by Marge Bot
parent 3823d4696a
commit 3887f64dc3

View file

@ -390,8 +390,8 @@ radv_create_shaders_from_pipeline_cache(struct radv_device *device,
assert(num_rt_groups == entry->num_stack_sizes);
for (int i = 0; i < num_rt_groups; ++i) {
memcpy(&rt_groups[i].stack_size, p, sizeof(struct radv_pipeline_shader_stack_size));
p += sizeof(struct radv_pipeline_shader_stack_size);
}
p += entry->num_stack_sizes * sizeof(struct radv_pipeline_shader_stack_size);
if (device->instance->debug_flags & RADV_DEBUG_NO_MEMORY_CACHE && cache == device->mem_cache)
vk_free(&cache->alloc, entry);