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-12-04 20:06:52 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-06 12:21:33 +0300
commit8c4363e3b1abe13bdd3936aeeac261dc891d849a (patch)
tree114ab7d2ddeaa5d95aba5b278da0aecc3a467e19 /source/blender/depsgraph
parent8912e4faef5f57ca0e396f8e8c20f059720e7631 (diff)
Depsgraph: Remove old comments which are likely outdated
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
index f821d6c9bf9..1f6d0f4ff56 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
@@ -963,12 +963,6 @@ void DepsgraphRelationBuilder::build_driver(ID *id, FCurve *fcu)
fcu->array_index);
const char *rna_path = fcu->rna_path ? fcu->rna_path : "";
const RNAPathKey self_key(id, rna_path);
-
- /* Create dependency between driver and data affected by it. */
- /* - direct property relationship... */
- //RNAPathKey affected_key(id, fcu->rna_path);
- //add_relation(driver_key, affected_key, "Driver -> Data");
-
/* Driver -> data components (for interleaved evaluation
* bones/constraints/modifiers).
*/
@@ -1033,15 +1027,6 @@ void DepsgraphRelationBuilder::build_driver(ID *id, FCurve *fcu)
RNAPathKey target_key(id, rna_path);
add_relation(driver_key, target_key, "Driver -> Target");
}
- /* Ensure that affected prop's update callbacks will be triggered once
- * done.
- */
- /* TODO: Implement this once the functionality to add these links exists
- * RNA.
- */
- /* XXX: the data itself could also set this, if it were to be truly
- * initialised later?
- */
/* Loop over variables to get the target relationships. */
build_driver_variables(id, fcu);
/* It's quite tricky to detect if the driver actually depends on time or