Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2019-07-24 17:27:07 +0300
committerJacques Lucke <mail@jlucke.com>2019-07-24 17:27:07 +0300
commitb60b1933845b814ad9b5364e8aff05e5ed90f642 (patch)
tree073c89a69425190798d93db21f907dc67f9b38c8 /source/blender/simulations/bparticles/forces.cpp
parent299ba77cc9bcec91bbd4d0801741624c25131d32 (diff)
do more checks when debugging
Diffstat (limited to 'source/blender/simulations/bparticles/forces.cpp')
-rw-r--r--source/blender/simulations/bparticles/forces.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/simulations/bparticles/forces.cpp b/source/blender/simulations/bparticles/forces.cpp
index 9cc62159138..f18c15cfc8a 100644
--- a/source/blender/simulations/bparticles/forces.cpp
+++ b/source/blender/simulations/bparticles/forces.cpp
@@ -35,7 +35,7 @@ void TurbulenceForce::add_force(ForceInterface &interface)
auto positions = block.attributes().get_float3("Position");
auto caller = m_compute_inputs.get_caller(interface);
- auto strengths = caller.add_output<float3>();
+ auto strengths = caller.add_output<float3>("Strength");
caller.call(block.active_range().as_array_ref());
for (uint pindex = 0; pindex < block.active_amount(); pindex++) {