diff options
author | Brian Paul <[email protected]> | 2009-10-14 16:23:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-14 19:08:38 -0600 |
commit | ade1cc992410c8696fdfe0f84fb613fd0dc8099f (patch) | |
tree | c1111855f3feffa1810fc784b65e7fef96f7a11d /src/mesa/main/debug.c | |
parent | d9099f8602eb6d15e9fc2e0b0987e7a58fb98b68 (diff) |
mesa: added MESA_VERBOSE option 'draw' to debug glDrawArrays/Elements, etc.
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r-- | src/mesa/main/debug.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 530170b5266..07ed51f5abe 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa/main/debug.c @@ -174,7 +174,8 @@ static void add_debug_flags( const char *debug ) { "api", VERBOSE_API }, { "list", VERBOSE_DISPLAY_LIST }, { "lighting", VERBOSE_LIGHTING }, - { "disassem", VERBOSE_DISASSEM } + { "disassem", VERBOSE_DISASSEM }, + { "draw", VERBOSE_DRAW } }; GLuint i; |