diff options
author | José Fonseca <[email protected]> | 2009-08-09 12:32:37 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:26 +0100 |
commit | 20f50b845b375c2fde9910c51b46cec23c95dd45 (patch) | |
tree | 3007fa9dbc267a884c4b5b98ea6b404b519dcbad | |
parent | 3130b9921cac4a8674b59c6d63bc2d248a4bdc4a (diff) |
util: Fix blend factor dumping.
-rw-r--r-- | src/gallium/auxiliary/util/u_debug_dump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_dump.c b/src/gallium/auxiliary/util/u_debug_dump.c index 4258f576909..2f3d038bf37 100644 --- a/src/gallium/auxiliary/util/u_debug_dump.c +++ b/src/gallium/auxiliary/util/u_debug_dump.c @@ -100,6 +100,7 @@ debug_dump_blend_factor_names[] = { "PIPE_BLENDFACTOR_INV_SRC_ALPHA", "PIPE_BLENDFACTOR_INV_DST_ALPHA", "PIPE_BLENDFACTOR_INV_DST_COLOR", + DEBUG_DUMP_INVALID_NAME, /* 0x16 */ "PIPE_BLENDFACTOR_INV_CONST_COLOR", "PIPE_BLENDFACTOR_INV_CONST_ALPHA", "PIPE_BLENDFACTOR_INV_SRC1_COLOR", @@ -130,6 +131,7 @@ debug_dump_blend_factor_short_names[] = { "inv_src_alpha", "inv_dst_alpha", "inv_dst_color", + DEBUG_DUMP_INVALID_NAME, /* 0x16 */ "inv_const_color", "inv_const_alpha", "inv_src1_color", |