Home | History | Annotate | Download | only in vl

Lines Matching refs:dsa

400    struct pipe_depth_stencil_alpha_state dsa;
459 memset(&dsa, 0, sizeof dsa);
460 dsa.depth.enabled = 0;
461 dsa.depth.writemask = 0;
462 dsa.depth.func = PIPE_FUNC_ALWAYS;
464 dsa.stencil[i].enabled = 0;
465 dsa.stencil[i].func = PIPE_FUNC_ALWAYS;
466 dsa.stencil[i].fail_op = PIPE_STENCIL_OP_KEEP;
467 dsa.stencil[i].zpass_op = PIPE_STENCIL_OP_KEEP;
468 dsa.stencil[i].zfail_op = PIPE_STENCIL_OP_KEEP;
469 dsa.stencil[i].valuemask = 0;
470 dsa.stencil[i].writemask = 0;
472 dsa.alpha.enabled = 0;
473 dsa.alpha.func = PIPE_FUNC_ALWAYS;
474 dsa.alpha.ref_value = 0;
475 c->dsa = c->pipe->create_depth_stencil_alpha_state(c->pipe, &dsa);
476 c->pipe->bind_depth_stencil_alpha_state(c->pipe, c->dsa);
489 c->pipe->delete_depth_stencil_alpha_state(c->pipe, c->dsa);