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>2018-05-02 15:25:32 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-05-02 18:09:44 +0300
commit651a2559318a5e8f3546286a207a5766e33feebe (patch)
treeb42b8f303ab46a4e7abf5d3882c68fd4cd712655 /source/blender/depsgraph/intern/depsgraph_debug.cc
parentbb75c4cbe9f54b643106a999a077d64b20f6d97a (diff)
Depsgraph: Cleanup, naming conventions
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_debug.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_debug.cc4
1 files changed, 2 insertions, 2 deletions
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<DEG::Depsgraph *>(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<const DEG::Depsgraph *>(depsgraph);