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-21 13:13:22 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-21 13:14:39 +0300
commitf906f5cc58559bc3e4d5593921fd2121f3c04d6b (patch)
tree00bd231b0cc1ad381d26045d14743c45929c934a /source/blender/blenkernel/intern/depsgraph.c
parent0ed3a72012ab311dc0c267b3b389d9938ae2d95c (diff)
Depsgraph: Remove eval priority from debugger
This needs to be redone anyway, to correspond to possibly new priorities calculated for evaluaiton.
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index 81e88bd3019..985c758d5cb 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -3704,7 +3704,7 @@ void DAG_print_dependencies(Main *UNUSED(bmain),
Scene *scene,
Object *UNUSED(ob))
{
- DEG_debug_graphviz(scene->depsgraph, stdout, "Depsgraph", false);
+ DEG_debug_graphviz(scene->depsgraph, stdout, "Depsgraph");
}
#endif