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:
Diffstat (limited to 'source/blender/blenkernel/BKE_global.h')
-rw-r--r--source/blender/blenkernel/BKE_global.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h
index aee57832536..9de4d249340 100644
--- a/source/blender/blenkernel/BKE_global.h
+++ b/source/blender/blenkernel/BKE_global.h
@@ -87,8 +87,8 @@ typedef struct Global {
int f;
struct {
- /** Verbosity for third party loggers */
- int level;
+ /** Logging vars (different loggers may use). */
+ int level; /* currently unused */
/** FILE handle or use stderr (we own this so close when done). */
void *file; /* currently unused */
} log;
@@ -157,19 +157,12 @@ enum {
G_DEBUG_XR_TIME = (1 << 22), /* XR/OpenXR timing messages */
G_DEBUG_GHOST = (1 << 23), /* Debug GHOST module. */
- G_DEBUG_LIBMV = (1 << 24),
- G_DEBUG_CYCLES = (1 << 25),
- G_DEBUG_FPE = (1 << 26), /* floating point exceptions */
- G_DEBUG_MEMORY = (1 << 27),
};
-void G_debug_enable(int flags);
-void G_verbose_set(int value);
-
#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_DEPSGRAPH | G_DEBUG_GPU_MEM | G_DEBUG_IO | G_DEBUG_GPU_SHADERS | \
- G_DEBUG_GHOST | G_DEBUG_LIBMV | G_DEBUG_CYCLES | G_DEBUG_FPE | G_DEBUG_MEMORY)
+ G_DEBUG_GHOST)
/** #Global.fileflags */
enum {