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/makesrna/intern/rna_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/makesrna/intern/rna_depsgraph.c')
-rw-r--r--source/blender/makesrna/intern/rna_depsgraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_depsgraph.c b/source/blender/makesrna/intern/rna_depsgraph.c
index adb99acef1f..14668001428 100644
--- a/source/blender/makesrna/intern/rna_depsgraph.c
+++ b/source/blender/makesrna/intern/rna_depsgraph.c
@@ -51,7 +51,7 @@ static void rna_Depsgraph_debug_graphviz(Depsgraph *graph, const char *filename)
if (f == NULL) {
return;
}
- DEG_debug_graphviz(graph, f, "Depsgraph", false);
+ DEG_debug_graphviz(graph, f, "Depsgraph");
fclose(f);
}