Realize depth code review fixes #6

Merged
Arye Ramaty merged 10 commits from David-Haver/blender:realize-depth into WIP-realize-depth 2024-04-22 11:18:11 +02:00
Showing only changes of commit 7f9df6a168 - Show all commits

View File

@ -1000,8 +1000,8 @@ static void execute_instances_tasks(
array_utils::gather(handle_map.as_span(), src_handles, all_handles.slice(dst_range));
array_utils::copy(src_instances.transforms(), all_transforms.slice(dst_range));
for (blender::float4x4 &transfrom : all_transforms.slice(dst_range)) {
transfrom *= src_base_transform;
for (blender::float4x4 &transform : all_transforms.slice(dst_range)) {
transform = src_base_transform * transform;
}
}