Lines Matching defs:stencil
129 int stencil; //!< Ref for quad op, clear value for clears
140 , stencil (stencil_)
150 static StencilOp clearStencil (int stencil)
153 op.stencil = stencil;
164 static StencilOp quad (GLenum stencilTest, int stencil, GLenum depthTest, float depth, GLenum sFail, GLenum dFail, GLenum dPass)
166 return StencilOp(TYPE_QUAD, stencilTest, stencil, depthTest, depth, sFail, dFail, dPass);
235 context.clearStencil(op.stencil);
244 context.stencilFunc(op.stencilTest, op.stencil, op.stencilMask);
303 // Get ops for stencil values
382 : TestCaseGroup(context, "stencil", "Stencil Tests")
432 STENCIL_CASE(stencil_fail_replace, "Set stencil on stencil fail",
436 STENCIL_CASE(depth_fail_replace, "Set stencil on depth fail",
441 STENCIL_CASE(depth_pass_replace, "Set stencil on depth pass",
447 STENCIL_CASE(incr_stencil_fail, "Increment on stencil fail",
457 STENCIL_CASE(decr_stencil_fail, "Decrement on stencil fail",
468 STENCIL_CASE(incr_wrap_stencil_fail, "Increment (wrap) on stencil fail",
474 STENCIL_CASE(decr_wrap_stencil_fail, "Decrement (wrap) on stencil fail",
482 STENCIL_CASE(zero_stencil_fail, "Zero on stencil fail",
488 STENCIL_CASE(invert_stencil_fail, "Invert on stencil fail",