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:
Diffstat (limited to 'source/blender/src/fluidsim.c')
-rw-r--r--source/blender/src/fluidsim.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/src/fluidsim.c b/source/blender/src/fluidsim.c
index ac90d3ed119..43d692a99c9 100644
--- a/source/blender/src/fluidsim.c
+++ b/source/blender/src/fluidsim.c
@@ -1129,6 +1129,11 @@ void fluidsimBake(struct Object *ob)
}
}
+void fluidsimFreeBake(struct Object *ob)
+{
+ /* not implemented yet */
+}
+
#else /* DISABLE_ELBEEM */
@@ -1149,5 +1154,8 @@ FluidsimSettings* fluidsimSettingsCopy(FluidsimSettings *fss) {
void fluidsimBake(struct Object *ob) {
}
+void fluidsimFreeBake(struct Object *ob) {
+}
+
#endif /* DISABLE_ELBEEM */