summaryrefslogtreecommitdiff
path: root/src/mesa/main/debug.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2005-05-12 10:28:43 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2005-05-12 10:28:43 +0000
commit269e3895d9837ac7303b91948f003ca5c12c0fe4 (patch)
treea9cdca8df60e5e7b259c408e0e3b9617fe62cffc /src/mesa/main/debug.c
parent5c72837af9d3e358459c7f2e3ef9263c160d2a70 (diff)
new MESA_DEBUG option: disassem
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r--src/mesa/main/debug.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c
index 6c6bfea8e5..edc32b1f94 100644
--- a/src/mesa/main/debug.c
+++ b/src/mesa/main/debug.c
@@ -176,6 +176,9 @@ static void add_debug_flags( const char *debug )
if (_mesa_strstr(debug, "lighting"))
MESA_VERBOSE |= VERBOSE_LIGHTING;
+
+ if (_mesa_strstr(debug, "disassem"))
+ MESA_VERBOSE |= VERBOSE_DISASSEM;
/* Debug flag:
*/