gallium: added util_dump_logicop()

This commit is contained in:
Brian Paul 2010-05-19 11:37:09 -06:00
parent c2a036d4ef
commit df61404dae
2 changed files with 46 additions and 0 deletions

View File

@ -70,6 +70,9 @@ util_dump_blend_factor(unsigned value, boolean shortened);
const char *
util_dump_blend_func(unsigned value, boolean shortened);
const char *
util_dump_logicop(unsigned value, boolean shortened);
const char *
util_dump_func(unsigned value, boolean shortened);

View File

@ -159,6 +159,49 @@ util_dump_blend_func_short_names[] = {
DEFINE_UTIL_DUMP_CONTINUOUS(blend_func)
static const char *
util_dump_logicop_names[] = {
"PIPE_LOGICOP_CLEAR",
"PIPE_LOGICOP_NOR",
"PIPE_LOGICOP_AND_INVERTED",
"PIPE_LOGICOP_COPY_INVERTED",
"PIPE_LOGICOP_AND_REVERSE",
"PIPE_LOGICOP_INVERT",
"PIPE_LOGICOP_XOR",
"PIPE_LOGICOP_NAND",
"PIPE_LOGICOP_AND",
"PIPE_LOGICOP_EQUIV",
"PIPE_LOGICOP_NOOP",
"PIPE_LOGICOP_OR_INVERTED",
"PIPE_LOGICOP_COPY",
"PIPE_LOGICOP_OR_REVERSE",
"PIPE_LOGICOP_OR",
"PIPE_LOGICOP_SET"
};
static const char *
util_dump_logicop_short_names[] = {
"clear",
"nor",
"and_inverted",
"copy_inverted",
"and_reverse",
"invert",
"xor",
"nand",
"and",
"equiv",
"noop",
"or_inverted",
"copy",
"or_reverse",
"or",
"set"
};
DEFINE_UTIL_DUMP_CONTINUOUS(logicop)
static const char *
util_dump_func_names[] = {
"PIPE_FUNC_NEVER",