util: Add function to dump PIPE_STENCIL_OP_xxx
This commit is contained in:
@@ -73,6 +73,9 @@ util_dump_blend_func(unsigned value, boolean shortened);
|
|||||||
const char *
|
const char *
|
||||||
util_dump_func(unsigned value, boolean shortened);
|
util_dump_func(unsigned value, boolean shortened);
|
||||||
|
|
||||||
|
const char *
|
||||||
|
util_dump_stencil_op(unsigned value, boolean shortened);
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
util_dump_tex_target(unsigned value, boolean shortened);
|
util_dump_tex_target(unsigned value, boolean shortened);
|
||||||
|
|
||||||
|
@@ -186,6 +186,33 @@ util_dump_func_short_names[] = {
|
|||||||
DEFINE_UTIL_DUMP_CONTINUOUS(func)
|
DEFINE_UTIL_DUMP_CONTINUOUS(func)
|
||||||
|
|
||||||
|
|
||||||
|
static const char *
|
||||||
|
util_dump_stencil_op_names[] = {
|
||||||
|
"PIPE_STENCIL_OP_KEEP",
|
||||||
|
"PIPE_STENCIL_OP_ZERO",
|
||||||
|
"PIPE_STENCIL_OP_REPLACE",
|
||||||
|
"PIPE_STENCIL_OP_INCR",
|
||||||
|
"PIPE_STENCIL_OP_DECR",
|
||||||
|
"PIPE_STENCIL_OP_INCR_WRAP",
|
||||||
|
"PIPE_STENCIL_OP_DECR_WRAP",
|
||||||
|
"PIPE_STENCIL_OP_INVERT"
|
||||||
|
};
|
||||||
|
|
||||||
|
static const char *
|
||||||
|
util_dump_stencil_op_short_names[] = {
|
||||||
|
"keep",
|
||||||
|
"zero",
|
||||||
|
"replace",
|
||||||
|
"incr",
|
||||||
|
"decr",
|
||||||
|
"incr_wrap",
|
||||||
|
"decr_wrap",
|
||||||
|
"invert"
|
||||||
|
};
|
||||||
|
|
||||||
|
DEFINE_UTIL_DUMP_CONTINUOUS(stencil_op)
|
||||||
|
|
||||||
|
|
||||||
static const char *
|
static const char *
|
||||||
util_dump_tex_target_names[] = {
|
util_dump_tex_target_names[] = {
|
||||||
"PIPE_TEXTURE_1D",
|
"PIPE_TEXTURE_1D",
|
||||||
|
Reference in New Issue
Block a user