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:
authorDaniel Genrich <daniel.genrich@gmx.net>2009-08-03 20:39:12 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2009-08-03 20:39:12 +0400
commitee92957b363950f49a562632d42494cb35f0e8ed (patch)
treefb0cde76df25786b3630feecebc087278e4a73f5 /source/blender/makesdna/DNA_smoke_types.h
parent7185303219310db45ccdbb521d626edd23b9fd06 (diff)
Smoke: fix crash with collisions + flows
Diffstat (limited to 'source/blender/makesdna/DNA_smoke_types.h')
-rw-r--r--source/blender/makesdna/DNA_smoke_types.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_smoke_types.h b/source/blender/makesdna/DNA_smoke_types.h
index 0c93b5eb56e..c3efc5e04dd 100644
--- a/source/blender/makesdna/DNA_smoke_types.h
+++ b/source/blender/makesdna/DNA_smoke_types.h
@@ -75,10 +75,8 @@ typedef struct SmokeDomainSettings {
int max_textures;
short noise; /* noise type: wave, curl, anisotropic */
short pad2;
- int prev_res[3];
- int prev_maxres;
- int render_res[3];
- int render_maxres;
+ int pad;
+ int pad3;
} SmokeDomainSettings;
@@ -104,6 +102,7 @@ typedef struct SmokeFlowSettings {
/* collision objects (filled with smoke) */
typedef struct SmokeCollSettings {
struct SmokeModifierData *smd; /* for fast RNA access */
+ struct BVHTree *bvhtree; /* bounding volume hierarchy for this cloth object */
float *points;
float *points_old;
float *vel;