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-06-02 17:08:53 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-06-02 17:08:53 +0300
commitf6b9b452d8bb2424b11f5c80cb18ef2c37648558 (patch)
tree6b8c18039ac7c1c39caacfe15919796776495430 /source/blender/makesrna/intern/rna_depsgraph.c
parent8ff405ebd490503173dbaf78e56da7327329a4fd (diff)
Cleanup: Trailign whitespace
Diffstat (limited to 'source/blender/makesrna/intern/rna_depsgraph.c')
-rw-r--r--source/blender/makesrna/intern/rna_depsgraph.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_depsgraph.c b/source/blender/makesrna/intern/rna_depsgraph.c
index 22566ea2296..82f8c454b53 100644
--- a/source/blender/makesrna/intern/rna_depsgraph.c
+++ b/source/blender/makesrna/intern/rna_depsgraph.c
@@ -54,9 +54,9 @@ static void rna_Depsgraph_debug_graphviz(Depsgraph *graph, const char *filename)
FILE *f = fopen(filename, "w");
if (f == NULL)
return;
-
+
DEG_debug_graphviz(graph, f, "Depsgraph", false);
-
+
fclose(f);
}
@@ -73,13 +73,13 @@ static void rna_Depsgraph_debug_rebuild(Depsgraph *UNUSED(graph), Main *bmain)
static void rna_Depsgraph_debug_stats(Depsgraph *graph, ReportList *reports)
{
size_t outer, ops, rels;
-
+
DEG_stats_simple(graph, &outer, &ops, &rels);
-
+
// XXX: report doesn't seem to work
printf("Approx %lu Operations, %lu Relations, %lu Outer Nodes\n",
ops, rels, outer);
-
+
BKE_reportf(reports, RPT_WARNING, "Approx. %lu Operations, %lu Relations, %lu Outer Nodes",
ops, rels, outer);
}
@@ -126,7 +126,7 @@ static void rna_def_depsgraph(BlenderRNA *brna)
srna = RNA_def_struct(brna, "Depsgraph", NULL);
RNA_def_struct_ui_text(srna, "Dependency Graph", "");
-
+
func = RNA_def_function(srna, "debug_graphviz", "rna_Depsgraph_debug_graphviz");
parm = RNA_def_string_file_path(func, "filename", NULL, FILE_MAX, "File Name",
"File in which to store graphviz debug output");