Home | History | Annotate | Download | only in a3xx

Lines Matching refs:cso

40 		const struct pipe_depth_stencil_alpha_state *cso)
48 so->base = *cso;
51 A3XX_RB_DEPTH_CONTROL_ZFUNC(cso->depth.func); /* maps 1:1 */
53 if (cso->depth.enabled)
58 if (cso->depth.writemask)
61 if (cso->stencil[0].enabled) {
62 const struct pipe_stencil_state *s = &cso->stencil[0];
76 if (cso->stencil[1].enabled) {
77 const struct pipe_stencil_state *bs = &cso->stencil[1];
92 if (cso->alpha.enabled) {
95 A3XX_RB_RENDER_CONTROL_ALPHA_TEST_FUNC(cso->alpha.func);
97 A3XX_RB_ALPHA_REF_UINT(cso->alpha.ref_value * 255.0) |
98 A3XX_RB_ALPHA_REF_FLOAT(cso->alpha.ref_value);