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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-05-23 17:36:44 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-05-23 17:37:36 +0300
commit0cc2666605d84cc43e8be5d4b3f65f903346f205 (patch)
tree25769500efadc3dbb62803640720a3e60970e502 /source/blender/modifiers/intern/MOD_fluidsim_util.h
parent9cb2b9b523ec73b8fab2d0d7785576e3ae9fb9f2 (diff)
Fix last usages of Scene.r.cfra in modifiers code.
Note that some modifiers-related code in BKE still uses that...
Diffstat (limited to 'source/blender/modifiers/intern/MOD_fluidsim_util.h')
-rw-r--r--source/blender/modifiers/intern/MOD_fluidsim_util.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_fluidsim_util.h b/source/blender/modifiers/intern/MOD_fluidsim_util.h
index 61ad270f6c8..3329e6dbebe 100644
--- a/source/blender/modifiers/intern/MOD_fluidsim_util.h
+++ b/source/blender/modifiers/intern/MOD_fluidsim_util.h
@@ -37,6 +37,7 @@ struct Object;
struct Scene;
struct FluidsimModifierData;
struct DerivedMesh;
+struct ModifierEvalContext;
/* new fluid-modifier interface */
void fluidsim_init(struct FluidsimModifierData *fluidmd);
@@ -44,8 +45,8 @@ void fluidsim_free(struct FluidsimModifierData *fluidmd);
struct DerivedMesh *fluidsimModifier_do(
struct FluidsimModifierData *fluidmd,
- struct Scene *scene, struct Object *ob, struct DerivedMesh *dm,
- int useRenderParams, int isFinalCalc);
+ const struct ModifierEvalContext *ctx,
+ struct DerivedMesh *dm);
#endif