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>2018-08-13 14:03:50 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-08-13 14:10:10 +0300
commit865608156157951e1e1c1bda1906e5fbfd762ced (patch)
tree24631ac3f740f45370516e5d1dcb05c602a7c5a5 /source/blender/depsgraph/intern/depsgraph.cc
parent3ee6b940dfd42a2251d1d3d44131f754d27769dd (diff)
Depsgraph: Remove obscure code which was only needed for old OSD implementation
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index 2a24d72eb67..3652cfe61fe 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -380,20 +380,6 @@ DepsRelation *Depsgraph::add_new_relation(OperationDepsNode *from,
}
/* Create new relation, and add it to the graph. */
rel = OBJECT_GUARDED_NEW(DepsRelation, from, to, description);
- /* TODO(sergey): Find a better place for this. */
-#ifdef WITH_OPENSUBDIV
- ComponentDepsNode *comp_node = from->owner;
- if (comp_node->type == DEG_NODE_TYPE_GEOMETRY) {
- IDDepsNode *id_to = to->owner->owner;
- IDDepsNode *id_from = from->owner->owner;
- if (id_to != id_from && (id_to->id_orig->recalc & ID_RECALC_ALL)) {
- if ((id_from->eval_flags & DAG_EVAL_NEED_CPU) == 0) {
- id_from->tag_update(this);
- id_from->eval_flags |= DAG_EVAL_NEED_CPU;
- }
- }
- }
-#endif
return rel;
}