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-10-25 15:51:02 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-25 15:51:02 +0300
commit43533076073dcbac04f1b59fb2b4a519a2755aee (patch)
treeeab4eaf9764c21120130df7a33b260533596e2da /source/blender/depsgraph/DEG_depsgraph_debug.h
parentdb83f41bafacb429e8fb24ccc509aa91f5744146 (diff)
Depsgraph: Make validation to take explicit graph to be checked
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph_debug.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph_debug.h b/source/blender/depsgraph/DEG_depsgraph_debug.h
index 63ebe21d073..7546f1d9018 100644
--- a/source/blender/depsgraph/DEG_depsgraph_debug.h
+++ b/source/blender/depsgraph/DEG_depsgraph_debug.h
@@ -60,7 +60,8 @@ bool DEG_debug_compare(const struct Depsgraph *graph1,
const struct Depsgraph *graph2);
/* Check that dependnecies in the graph are really up to date. */
-bool DEG_debug_scene_relations_validate(struct Main *bmain,
+bool DEG_debug_graph_relations_validate(struct Depsgraph *graph,
+ struct Main *bmain,
struct Scene *scene);