diff options
author | Keith Whitwell <[email protected]> | 2005-05-12 10:28:43 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-05-12 10:28:43 +0000 |
commit | 269e3895d9837ac7303b91948f003ca5c12c0fe4 (patch) | |
tree | a9cdca8df60e5e7b259c408e0e3b9617fe62cffc /src/mesa/main/debug.c | |
parent | 5c72837af9d3e358459c7f2e3ef9263c160d2a70 (diff) |
new MESA_DEBUG option: disassem
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r-- | src/mesa/main/debug.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 6c6bfea8e55..edc32b1f94d 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: */ |