diff options
author | Keith Whitwell <[email protected]> | 2009-01-17 18:45:20 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-01-17 18:45:20 +0000 |
commit | 8f3fac6107460b6d9b011b5c76246468bb16004b (patch) | |
tree | 65b1e1d644d9b8d75d428d827f6bcfddbf89dc40 /src/gallium/include | |
parent | bcc45a202496fba9686f953011039c09e36bf3ae (diff) |
debug: add noprefix version of debug_dump_enum
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_debug.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_debug.h b/src/gallium/include/pipe/p_debug.h index 3b00fb9aa89..e9c95982dda 100644 --- a/src/gallium/include/pipe/p_debug.h +++ b/src/gallium/include/pipe/p_debug.h @@ -261,6 +261,11 @@ const char * debug_dump_enum(const struct debug_named_value *names, unsigned long value); +const char * +debug_dump_enum_noprefix(const struct debug_named_value *names, + const char *prefix, + unsigned long value); + /** * Convert binary flags value to a string. |