Lines Matching defs:stencil
126 int stencil; //!< Ref for quad op, clear value for clears
137 , stencil (stencil_)
147 static StencilOp clearStencil (int stencil)
150 op.stencil = stencil;
161 static StencilOp quad (GLenum stencilTest, int stencil, GLenum depthTest, float depth, GLenum sFail, GLenum dFail, GLenum dPass)
163 return StencilOp(TYPE_QUAD, stencilTest, stencil, depthTest, depth, sFail, dFail, dPass);
232 context.clearStencil(op.stencil);
241 context.stencilFunc(op.stencilTest, op.stencil, op.stencilMask);
300 // Get ops for stencil values
379 : TestCaseGroup(context, "stencil", "Stencil Tests")
429 STENCIL_CASE(stencil_fail_replace, "Set stencil on stencil fail",
433 STENCIL_CASE(depth_fail_replace, "Set stencil on depth fail",
438 STENCIL_CASE(depth_pass_replace, "Set stencil on depth pass",
444 STENCIL_CASE(incr_stencil_fail, "Increment on stencil fail",
454 STENCIL_CASE(decr_stencil_fail, "Decrement on stencil fail",
465 STENCIL_CASE(incr_wrap_stencil_fail, "Increment (wrap) on stencil fail",
471 STENCIL_CASE(decr_wrap_stencil_fail, "Decrement (wrap) on stencil fail",
479 STENCIL_CASE(zero_stencil_fail, "Zero on stencil fail",
485 STENCIL_CASE(invert_stencil_fail, "Invert on stencil fail",