Home | History | Annotate | Download | only in vl

Lines Matching refs:dsa

413    dec->base.context->delete_depth_stencil_alpha_state(dec->base.context, dec->dsa);
773 struct pipe_depth_stencil_alpha_state dsa;
779 memset(&dsa, 0, sizeof dsa);
780 dsa.depth.enabled = 0;
781 dsa.depth.writemask = 0;
782 dsa.depth.func = PIPE_FUNC_ALWAYS;
784 dsa.stencil[i].enabled = 0;
785 dsa.stencil[i].func = PIPE_FUNC_ALWAYS;
786 dsa.stencil[i].fail_op = PIPE_STENCIL_OP_KEEP;
787 dsa.stencil[i].zpass_op = PIPE_STENCIL_OP_KEEP;
788 dsa.stencil[i].zfail_op = PIPE_STENCIL_OP_KEEP;
789 dsa.stencil[i].valuemask = 0;
790 dsa.stencil[i].writemask = 0;
792 dsa.alpha.enabled = 0;
793 dsa.alpha.func = PIPE_FUNC_ALWAYS;
794 dsa.alpha.ref_value = 0;
795 dec->dsa = dec->base.context->create_depth_stencil_alpha_state(dec->base.context, &dsa);
796 dec->base.context->bind_depth_stencil_alpha_state(dec->base.context, dec->dsa);