Depsgraph: Print simple stats after filtering graph, to quickly verify if anything happened

This commit is contained in:
Joshua Leung 2018-08-23 02:51:01 +12:00
parent be77eeae46
commit 9a0ef0933d
1 changed files with 12 additions and 0 deletions

View File

@ -51,6 +51,7 @@ extern "C" {
#include "DEG_depsgraph.h"
#include "DEG_depsgraph_query.h"
#include "DEG_depsgraph_debug.h"
#include "util/deg_util_foreach.h"
@ -265,6 +266,17 @@ Depsgraph *DEG_graph_filter(const Depsgraph *graph_src, Main *bmain, DEG_FilterQ
BLI_gset_free(retained_ids, NULL);
retained_ids = NULL;
/* Print Stats */
// XXX: Hide behind debug flags
size_t s_outer, s_operations, s_relations;
size_t n_outer, n_operations, n_relations;
DEG_stats_simple(graph_src, &s_outer, &s_operations, &s_relations);
DEG_stats_simple(graph_new, &n_outer, &n_operations, &n_relations);
printf("%s: src = (Out: %u, Op: %u, Rel: %u)\n", __func__, s_outer, s_operations, s_relations); // XXX
printf("%s: new = (Out: %u, Op: %u, Rel: %u)\n", __func__, n_outer, n_operations, n_relations); // XXX
/* Return this new graph instance */
return graph_new;
}