mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-01 11:10:27 +01:00
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:
parent
3823d4696a
commit
3887f64dc3
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue