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>2019-09-04 17:40:20 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-09-05 12:57:20 +0300
commit31c2929496c2e778a162020215fb6d643d82581c (patch)
treecfc2b2a16d7024084afcebdf24cf926b95541b0f /source/blender/depsgraph/intern/depsgraph_tag.cc
parentac060232aae2e70ff83c6926420a38f037bdee02 (diff)
Depsgraph: Free user code from worry about updates flush
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_tag.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index 72ef495f1d5..647837bd758 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -779,14 +779,6 @@ void DEG_id_type_tag(Main *bmain, short id_type)
}
}
-void DEG_graph_flush_update(Main *bmain, Depsgraph *depsgraph)
-{
- if (depsgraph == NULL) {
- return;
- }
- DEG::deg_graph_flush_updates(bmain, (DEG::Depsgraph *)depsgraph);
-}
-
/* Update dependency graph when visible scenes/layers changes. */
void DEG_graph_on_visible_update(Main *bmain, Depsgraph *depsgraph, const bool do_time)
{