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:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-07-05 12:08:05 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-07-05 12:30:38 +0300
commitf4ce6d02cde816c3c681702d97a75617b8e9a598 (patch)
treee9699aabbc3cd84abc3b3330fb27612ef83c95ef /source/blender/modifiers/intern/MOD_fluidsim_util.h
parent99a6d616e85f8a06dfd3d825f8e3cd350e35f61e (diff)
Fluidsim: ported from DerivedMesh to Mesh
Also removed a bunch of unnecessary #include statements from fluidsim.c.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_fluidsim_util.h')
-rw-r--r--source/blender/modifiers/intern/MOD_fluidsim_util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/modifiers/intern/MOD_fluidsim_util.h b/source/blender/modifiers/intern/MOD_fluidsim_util.h
index 0a0c8419a99..041a67eddbd 100644
--- a/source/blender/modifiers/intern/MOD_fluidsim_util.h
+++ b/source/blender/modifiers/intern/MOD_fluidsim_util.h
@@ -36,16 +36,16 @@
struct Object;
struct Scene;
struct FluidsimModifierData;
-struct DerivedMesh;
+struct Mesh;
struct ModifierEvalContext;
/* new fluid-modifier interface */
void fluidsim_init(struct FluidsimModifierData *fluidmd);
void fluidsim_free(struct FluidsimModifierData *fluidmd);
-struct DerivedMesh *fluidsimModifier_do(
+struct Mesh *fluidsimModifier_do(
struct FluidsimModifierData *fluidmd,
const struct ModifierEvalContext *ctx,
- struct DerivedMesh *dm);
+ struct Mesh *dm);
#endif