Home | History | Annotate | Download | only in nouveau

Lines Matching refs:Stencil

172 	/* Stencil test. */
173 if (ctx->Stencil.WriteMask[0])
176 if (ctx->Stencil.Enabled)
179 nv04->ctrl[1] |= get_comparison_op(ctx->Stencil.Function[0]) << 4 |
180 ctx->Stencil.Ref[0] << 8 |
181 ctx->Stencil.ValueMask[0] << 16 |
182 ctx->Stencil.WriteMask[0] << 24;
184 nv04->ctrl[2] |= get_stencil_op(ctx->Stencil.ZPassFunc[0]) << 8 |
185 get_stencil_op(ctx->Stencil.ZFailFunc[0]) << 4 |
186 get_stencil_op(ctx->Stencil.FailFunc[0]);