summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-05-19 11:37:42 -0600
committerBrian Paul <brianp@vmware.com>2010-05-20 10:27:11 -0600
commit75189ef960d2f7001d2b24e7c1939d0a647c0cf1 (patch)
tree32cce5c1cad707a6133b4db020f67fc682791eb0 /src
parentdf61404daeaadf2ab50798e384b9ebd4e0659910 (diff)
llvmpipe: use util_dump_logicop()
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_state_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c
index 3e0c574895..7497565d2a 100644
--- a/src/gallium/drivers/llvmpipe/lp_state_fs.c
+++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c
@@ -910,7 +910,7 @@ dump_fs_variant_key(const struct lp_fragment_shader_variant_key *key)
}
if (key->blend.logicop_enable) {
- debug_printf("blend.logicop_func = %u\n", key->blend.logicop_func);
+ debug_printf("blend.logicop_func = %s\n", util_dump_logicop(key->blend.logicop_func, TRUE));
}
else if (key->blend.rt[0].blend_enable) {
debug_printf("blend.rgb_func = %s\n", util_dump_blend_func (key->blend.rt[0].rgb_func, TRUE));