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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-20 13:33:45 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-21 14:56:22 +0300
commitcfb7565cd5c19e80089d82d7034393342a24f696 (patch)
tree78fa4a4a73e5b61e6b7cd5626967a836e2ed9628 /source/blender/makesdna
parent91a5b665b0b47a20e65434dd40740a80b39a0b9c (diff)
Cleanup: convert smoke modifier from DerivedMesh to Mesh.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_smoke_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_smoke_types.h b/source/blender/makesdna/DNA_smoke_types.h
index 443c6923ed0..afcdeb36c85 100644
--- a/source/blender/makesdna/DNA_smoke_types.h
+++ b/source/blender/makesdna/DNA_smoke_types.h
@@ -250,7 +250,7 @@ typedef struct SmokeDomainSettings {
typedef struct SmokeFlowSettings {
struct SmokeModifierData *smd; /* for fast RNA access */
- struct DerivedMesh *dm;
+ struct Mesh *mesh;
struct ParticleSystem *psys;
struct Tex *noise_texture;
@@ -290,7 +290,7 @@ typedef struct SmokeFlowSettings {
/* collision objects (filled with smoke) */
typedef struct SmokeCollSettings {
struct SmokeModifierData *smd; /* for fast RNA access */
- struct DerivedMesh *dm;
+ struct Mesh *mesh;
float *verts_old;
int numverts;
short type; // static = 0, rigid = 1, dynamic = 2