mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
llvmpipe: Dump fs key's stencil state.
This commit is contained in:
parent
994e45de49
commit
648c9d5247
1 changed files with 10 additions and 0 deletions
|
|
@ -912,6 +912,16 @@ generate_variant(struct llvmpipe_context *lp,
|
|||
debug_printf("depth.func = %s\n", util_dump_func(key->depth.func, TRUE));
|
||||
debug_printf("depth.writemask = %u\n", key->depth.writemask);
|
||||
}
|
||||
for (i = 0; i < 2; ++i) {
|
||||
if(key->stencil[i].enabled) {
|
||||
debug_printf("stencil[%u].func = %s\n", i, util_dump_func(key->stencil[i].func, TRUE));
|
||||
debug_printf("stencil[%u].fail_op = %s\n", i, util_dump_stencil_op(key->stencil[i].fail_op, TRUE));
|
||||
debug_printf("stencil[%u].zpass_op = %s\n", i, util_dump_stencil_op(key->stencil[i].zpass_op, TRUE));
|
||||
debug_printf("stencil[%u].zfail_op = %s\n", i, util_dump_stencil_op(key->stencil[i].zfail_op, TRUE));
|
||||
debug_printf("stencil[%u].valuemask = 0x%x\n", i, key->stencil[i].valuemask);
|
||||
debug_printf("stencil[%u].writemask = 0x%x\n", i, key->stencil[i].writemask);
|
||||
}
|
||||
}
|
||||
if(key->alpha.enabled) {
|
||||
debug_printf("alpha.func = %s\n", util_dump_func(key->alpha.func, TRUE));
|
||||
debug_printf("alpha.ref_value = %f\n", key->alpha.ref_value);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue