From 651a2559318a5e8f3546286a207a5766e33feebe Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 2 May 2018 14:25:32 +0200 Subject: Depsgraph: Cleanup, naming conventions --- source/blender/depsgraph/intern/depsgraph_debug.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/depsgraph/intern/depsgraph_debug.cc') diff --git a/source/blender/depsgraph/intern/depsgraph_debug.cc b/source/blender/depsgraph/intern/depsgraph_debug.cc index 4e8d684f697..6b74c11ed70 100644 --- a/source/blender/depsgraph/intern/depsgraph_debug.cc +++ b/source/blender/depsgraph/intern/depsgraph_debug.cc @@ -50,14 +50,14 @@ extern "C" { #include "util/deg_util_foreach.h" -void DEG_set_debug_flags(Depsgraph *depsgraph, int flags) +void DEG_debug_flags_set(Depsgraph *depsgraph, int flags) { DEG::Depsgraph *deg_graph = reinterpret_cast(depsgraph); deg_graph->debug_flags = flags; } -int DEG_get_debug_flags(const Depsgraph *depsgraph) +int DEG_debug_flags_get(const Depsgraph *depsgraph) { const DEG::Depsgraph *deg_graph = reinterpret_cast(depsgraph); -- cgit v1.2.3