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-05-25 13:23:03 +0300
committerJacques Lucke <jacques@blender.org>2020-05-25 13:23:55 +0300
commit87e9557cd109dc9a3d52f07b509a340bba4aaf20 (patch)
treecc37b521e6ec6d085b5fe9c411361fb4cb8385b5 /source/blender/blenkernel/BKE_simulation.h
parent60bed34f165b209dbc7225b433ebe9e81aec2d35 (diff)
Simulations: pass simulation data block to update function
Diffstat (limited to 'source/blender/blenkernel/BKE_simulation.h')
-rw-r--r--source/blender/blenkernel/BKE_simulation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_simulation.h b/source/blender/blenkernel/BKE_simulation.h
index d1cf782e9e5..534ddfe1271 100644
--- a/source/blender/blenkernel/BKE_simulation.h
+++ b/source/blender/blenkernel/BKE_simulation.h
@@ -27,7 +27,9 @@ struct Depsgraph;
void *BKE_simulation_add(struct Main *bmain, const char *name);
-void BKE_simulation_data_update(struct Depsgraph *depsgraph, struct Scene *scene);
+void BKE_simulation_data_update(struct Depsgraph *depsgraph,
+ struct Scene *scene,
+ struct Simulation *simulation);
#ifdef __cplusplus
}