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>2015-06-05 03:34:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-06-05 13:37:41 +0300
commit304ee9af8d57695664a1f1792c9e9278b5de6fec (patch)
tree86e395c9b081bf6f71734a53f165e0fab0b738e3 /source/creator
parent907f804ad8a32b39018a51f9b4bfab359222068a (diff)
Depsgraph: Report to the console when the new depsgraph is used
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index d62f255ea0d..2a96988a0bd 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -942,6 +942,7 @@ static int set_threads(int argc, const char **argv, void *UNUSED(data))
static int depsgraph_use_new(int UNUSED(argc), const char **UNUSED(argv), void *UNUSED(data))
{
+ printf("Using new dependency graph.\n");
DEG_depsgraph_switch_to_new();
return 0;
}