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:
authorJacques Lucke <jacques@blender.org>2020-03-10 19:32:38 +0300
committerJacques Lucke <jacques@blender.org>2020-03-10 19:33:05 +0300
commit0f1f75178571d9e2644f3b4dd697a5c876bf3ea2 (patch)
tree4cdf18e2119bbe36daf9901a72b12686ed4cb5a2 /source/blender/blenkernel/BKE_fluid.h
parenta6d7280b8e1c8ac7c0d6ebcf134290836413168c (diff)
Fix T74525: Fluid caches overwrite each other by default
Reviewers: sebbas Differential Revision: https://developer.blender.org/D7093
Diffstat (limited to 'source/blender/blenkernel/BKE_fluid.h')
-rw-r--r--source/blender/blenkernel/BKE_fluid.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_fluid.h b/source/blender/blenkernel/BKE_fluid.h
index 50ff360984c..08bc20c60b5 100644
--- a/source/blender/blenkernel/BKE_fluid.h
+++ b/source/blender/blenkernel/BKE_fluid.h
@@ -62,6 +62,7 @@ void BKE_fluid_reallocate_copy_fluid(struct FluidDomainSettings *mds,
int o_shift[3],
int n_shift[3]);
void BKE_fluid_cache_free(struct FluidDomainSettings *mds, struct Object *ob, int cache_map);
+void BKE_fluid_cache_new_name_for_current_session(int maxlen, char *r_name);
float BKE_fluid_get_velocity_at(struct Object *ob, float position[3], float velocity[3]);
int BKE_fluid_get_data_flags(struct FluidDomainSettings *mds);