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
path: root/source
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2022-10-08 01:40:41 +0300
committerJoseph Eagar <joeedh@gmail.com>2022-10-08 01:40:41 +0300
commitaf288a09a529dc802effe104f09870a4fb48802a (patch)
treecc82a6860c51598ba78c9e91bfb37ac52f25edc8 /source
parentf3f0ea8dc27e457f61667eb24c476646c46ae0a9 (diff)
Viewport: Enable draw_debug.cc code when WITH_DRAW_DEBUG is on
Diffstat (limited to 'source')
-rw-r--r--source/blender/draw/intern/draw_debug.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/intern/draw_debug.cc b/source/blender/draw/intern/draw_debug.cc
index 9e0be3d96ae..a78dc59cb7e 100644
--- a/source/blender/draw/intern/draw_debug.cc
+++ b/source/blender/draw/intern/draw_debug.cc
@@ -21,7 +21,7 @@
#include <iomanip>
-#ifdef DEBUG
+#if defined(DEBUG) || defined(WITH_DRAW_DEBUG)
# define DRAW_DEBUG
#else
/* Uncomment to forcibly enable debug draw in release mode. */