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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-03-28 18:32:51 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-03-29 13:41:11 +0300
commit44cd24a9cee9ffb14b5d26a622f2158f55e008ba (patch)
tree4ff9740ad9fe6a99797c9b0a0d08130efaf13ed5 /source/blender/makesdna/DNA_particle_types.h
parent526719bccb8bc8a592ad951cb3a137ce56fa4834 (diff)
Particles: Remove dedicated recalc field from ParticleSettings
Use more generic id->recalc flag. Also sanitize flag flush from settings to particle system. Need to do such flush before triggering point cache reset, since point cache reset will do some logic based on what flags are set. This will solve crash caused by threaded update which will set some bitflags while point cache reset is in progress.
Diffstat (limited to 'source/blender/makesdna/DNA_particle_types.h')
-rw-r--r--source/blender/makesdna/DNA_particle_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h
index a7be2e37c4b..5f86ec31d0b 100644
--- a/source/blender/makesdna/DNA_particle_types.h
+++ b/source/blender/makesdna/DNA_particle_types.h
@@ -262,7 +262,7 @@ typedef struct ParticleSettings {
short use_modifier_stack;
short pad5;
- int recalc;
+ int pad8;
float twist;
float pad6;