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-11-08 12:27:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-11-08 17:02:19 +0300
commit5c66bbc56f08f13638a92a5e4702d138abc37ba7 (patch)
tree2493569b4df8ba46ea83d04ceaa60bbda0714123 /source/blender/blenkernel/intern/scene.c
parent20988ed5dcec977c641a29f2cc948d4bdb6f86cd (diff)
Depsgraph: Remove traces of old single-per-scene dependency graph
Diffstat (limited to 'source/blender/blenkernel/intern/scene.c')
-rw-r--r--source/blender/blenkernel/intern/scene.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index dfa9227b679..ce2e4e62be1 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -238,7 +238,6 @@ void BKE_scene_copy_data(Main *bmain, Scene *sce_dst, const Scene *sce_src, cons
const int flag_subdata = flag | LIB_ID_CREATE_NO_USER_REFCOUNT;
sce_dst->ed = NULL;
- sce_dst->depsgraph_legacy = NULL;
sce_dst->depsgraph_hash = NULL;
sce_dst->obedit = NULL;
sce_dst->fps_info = NULL;
@@ -2423,8 +2422,6 @@ void BKE_scene_ensure_depsgraph_hash(Scene *scene)
void BKE_scene_free_depsgraph_hash(Scene *scene)
{
- /* TODO(sergey): Keep this for until we get rid of depsgraph_legacy. */
- DEG_graph_free(scene->depsgraph_legacy);
if (scene->depsgraph_hash == NULL) {
return;
}