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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-10-25 13:27:37 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-25 14:28:39 +0300
commitda78338da035a95b6eb5c5c52144ffa0e7bcb236 (patch)
tree365e59606249df0802844cb2e82bee49607cb289 /source/blender/depsgraph/DEG_depsgraph_build.h
parent005cb90113361356b040337bf5af503d1f4f34a0 (diff)
Depsgraph: Add function to update relations within a given graph
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph_build.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_build.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph_build.h b/source/blender/depsgraph/DEG_depsgraph_build.h
index 84cf12ba675..df82e962900 100644
--- a/source/blender/depsgraph/DEG_depsgraph_build.h
+++ b/source/blender/depsgraph/DEG_depsgraph_build.h
@@ -65,6 +65,11 @@ void DEG_graph_build_from_scene(struct Depsgraph *graph,
/* Tag relations from the given graph for update. */
void DEG_graph_tag_relations_update(struct Depsgraph *graph);
+/* Create or update relations in the specified graph. */
+void DEG_graph_relations_update(struct Depsgraph *graph,
+ struct Main *bmain,
+ struct Scene *scene);
+
/* Tag all relations in the database for update.*/
void DEG_relations_tag_update(struct Main *bmain);