Geometry Nodes: use lazy evaluation in repeat zone #112421

Merged
Jacques Lucke merged 26 commits from JacquesLucke/blender:lazy-repeat-zone into main 2023-09-22 08:58:26 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit d5ca9772eb - Show all commits

View File

@ -1816,8 +1816,8 @@ class LazyFunctionForRepeatZone : public LazyFunction {
eval_storage.side_effect_provider->lf_body_nodes_ = lf_body_nodes;
eval_storage.graph_executor.emplace(lf_graph,
JacquesLucke marked this conversation as resolved
Review

std::move?

`std::move`?
lf_graph_inputs,
lf_graph_outputs,
std::move(lf_graph_inputs),
std::move(lf_graph_outputs),
nullptr,
&*eval_storage.side_effect_provider,
&*eval_storage.body_execute_wrapper);