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-24 16:25:41 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-24 17:04:11 +0300
commit1829084da1a47e6080d4b85c2eb94fd2c0b07c27 (patch)
treeb39bfdcad6d343bc01907f1587e0a34e409a42cc /source/blender
parent72b61763da593fb6a9822f3e37eff9dd2973bf66 (diff)
Depsgraph: Switch to explicit graph specification for tag flush
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/scene.c2
-rw-r--r--source/blender/depsgraph/DEG_depsgraph.h2
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc6
-rw-r--r--source/blender/editors/transform/transform_conversions.c4
4 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index 8b53425d343..4662612cc24 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -1608,7 +1608,7 @@ void BKE_scene_update_tagged(EvaluationContext *eval_ctx, Main *bmain, Scene *sc
prepare_mesh_for_viewport_render(bmain, scene);
/* flush recalc flags to dependencies */
- DEG_scene_flush_update(bmain, scene);
+ DEG_graph_flush_update(bmain, scene->depsgraph_legacy);
/* removed calls to quick_cache, see pointcache.c */
diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h
index 34e59966a71..17cf22ae1b4 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -181,7 +181,7 @@ void DEG_ids_clear_recalc(struct Main *bmain);
/* Update Flushing ------------------------------- */
/* Flush updates for IDs in a single scene. */
-void DEG_scene_flush_update(struct Main *bmain, struct Scene *scene);
+void DEG_graph_flush_update(struct Main *bmain, Depsgraph *depsgraph);
/* Check if something was changed in the database and inform
* editors about this.
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index cde87ba126c..8339a765956 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -431,12 +431,12 @@ void DEG_id_type_tag(Main *bmain, short id_type)
bmain->id_tag_update[BKE_idcode_to_index(id_type)] = 1;
}
-void DEG_scene_flush_update(Main *bmain, Scene *scene)
+void DEG_graph_flush_update(Main *bmain, Depsgraph *depsgraph)
{
- if (scene->depsgraph_legacy == NULL) {
+ if (depsgraph == NULL) {
return;
}
- DEG::deg_graph_flush_updates(bmain, (DEG::Depsgraph *)scene->depsgraph_legacy);
+ DEG::deg_graph_flush_updates(bmain, (DEG::Depsgraph *)depsgraph);
}
/* Update dependency graph when visible scenes/layers changes. */
diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c
index b04767724ea..7a41272332f 100644
--- a/source/blender/editors/transform/transform_conversions.c
+++ b/source/blender/editors/transform/transform_conversions.c
@@ -5603,7 +5603,7 @@ static void set_trans_object_base_flags(TransInfo *t)
}
/* all recalc flags get flushed to all layers, so a layer flip later on works fine */
- DEG_scene_flush_update(G.main, t->scene);
+ DEG_graph_flush_update(G.main, t->scene->depsgraph_legacy);
/* and we store them temporal in base (only used for transform code) */
/* this because after doing updates, the object->recalc is cleared */
@@ -5683,7 +5683,7 @@ static int count_proportional_objects(TransInfo *t)
/* all recalc flags get flushed to all layers, so a layer flip later on works fine */
DEG_scene_relations_update(G.main, t->scene);
- DEG_scene_flush_update(G.main, t->scene);
+ DEG_graph_flush_update(G.main, t->scene->depsgraph_legacy);
/* and we store them temporal in base (only used for transform code) */
/* this because after doing updates, the object->recalc is cleared */