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>2014-01-29 15:37:45 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-01-29 15:48:07 +0400
commit5c750b76f21a22799554e60de272602146c59386 (patch)
treec151874e9b7305689b46c92d8ef9e8dfecd89f79 /source/blender/blenkernel/BKE_global.h
parenta68ceb0af8ecc4c5df7a27b52814fcf0246ad36a (diff)
Move depsgraph debug print under --debug-depsgraph command line argument
Diffstat (limited to 'source/blender/blenkernel/BKE_global.h')
-rw-r--r--source/blender/blenkernel/BKE_global.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h
index d0341ab8c89..3742b45c6c0 100644
--- a/source/blender/blenkernel/BKE_global.h
+++ b/source/blender/blenkernel/BKE_global.h
@@ -129,10 +129,11 @@ enum {
G_DEBUG_WM = (1 << 5), /* operator, undo */
G_DEBUG_JOBS = (1 << 6), /* jobs time profiling */
G_DEBUG_FREESTYLE = (1 << 7), /* freestyle messages */
+ G_DEBUG_DEPSGRAPH = (1 << 8), /* depsgraph messages */
};
#define G_DEBUG_ALL (G_DEBUG | G_DEBUG_FFMPEG | G_DEBUG_PYTHON | G_DEBUG_EVENTS | G_DEBUG_WM | G_DEBUG_JOBS | \
- G_DEBUG_FREESTYLE)
+ G_DEBUG_FREESTYLE | G_DEBUG_DEPSGRAPH)
/* G.fileflags */