diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-08-19 20:39:51 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-08-19 20:44:36 +0100 |
commit | 081d35142e5feee66f2e55a42d0f7b23202d1dc9 (patch) | |
tree | 57cdc2d7e7f023fc48fca1e10fe9f2489e1193c6 | |
parent | 3c703602c3e19c04e15ccd168f824bc1741f31aa (diff) |
util: Dump PIPE_FUNC_x value names.
-rw-r--r-- | src/gallium/auxiliary/util/u_debug_dump.c | 27 | ||||
-rw-r--r-- | src/gallium/auxiliary/util/u_debug_dump.h | 2 |
2 files changed, 29 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_dump.c b/src/gallium/auxiliary/util/u_debug_dump.c index 2f3d038bf3..6bdecde048 100644 --- a/src/gallium/auxiliary/util/u_debug_dump.c +++ b/src/gallium/auxiliary/util/u_debug_dump.c @@ -160,3 +160,30 @@ debug_dump_blend_func_short_names[] = { }; DEFINE_DEBUG_DUMP_CONTINUOUS(blend_func) + + +static const char * +debug_dump_func_names[] = { + "PIPE_FUNC_NEVER", + "PIPE_FUNC_LESS", + "PIPE_FUNC_EQUAL", + "PIPE_FUNC_LEQUAL", + "PIPE_FUNC_GREATER", + "PIPE_FUNC_NOTEQUAL", + "PIPE_FUNC_GEQUAL", + "PIPE_FUNC_ALWAYS" +}; + +static const char * +debug_dump_func_short_names[] = { + "never", + "less", + "equal", + "less_equal", + "greater", + "not_equal", + "greater_equal", + "always" +}; + +DEFINE_DEBUG_DUMP_CONTINUOUS(func) diff --git a/src/gallium/auxiliary/util/u_debug_dump.h b/src/gallium/auxiliary/util/u_debug_dump.h index e946d91555..102935559c 100644 --- a/src/gallium/auxiliary/util/u_debug_dump.h +++ b/src/gallium/auxiliary/util/u_debug_dump.h @@ -51,6 +51,8 @@ debug_dump_blend_factor(unsigned value, boolean shortened); const char * debug_dump_blend_func(unsigned value, boolean shortened); +const char * +debug_dump_func(unsigned value, boolean shortened); /* FIXME: Move the other debug_dump_xxx functions out of u_debug.h into here. */ |