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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-07-26 22:43:18 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-07-26 23:02:10 +0300
commit2ebf263f5c3d23084e09cff02eac138a1fd8619f (patch)
tree4c1165052bb9dd02fe8fff0526ac934614d0d0bb /extern/mantaflow/preprocessed/particle.cpp
parent9386dd66ff21c64528eca037b6bfd86ed41eaf72 (diff)
Fluid: Updated Mantaflow source files
New files contain updated sampling function (support for maximum number of particles cap).
Diffstat (limited to 'extern/mantaflow/preprocessed/particle.cpp')
-rw-r--r--extern/mantaflow/preprocessed/particle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/mantaflow/preprocessed/particle.cpp b/extern/mantaflow/preprocessed/particle.cpp
index 6e1ef2fa5d8..9561365af3d 100644
--- a/extern/mantaflow/preprocessed/particle.cpp
+++ b/extern/mantaflow/preprocessed/particle.cpp
@@ -29,7 +29,7 @@ using namespace std;
namespace Manta {
ParticleBase::ParticleBase(FluidSolver *parent)
- : PbClass(parent), mAllowCompress(true), mFreePdata(false)
+ : PbClass(parent), mAllowCompress(true), mFreePdata(false), mMaxParticles(0)
{
}