Lines Matching refs:ref
131 const GLubyte ref = ctx->Stencil.Ref[face];
145 /* replace stencil buf values with ref value */
146 STENCIL_OP(ref);
218 const GLubyte ref = (GLubyte) (ctx->Stencil.Ref[face] & valueMask);
236 STENCIL_TEST(ref < s);
239 STENCIL_TEST(ref <= s);
242 STENCIL_TEST(ref > s);
245 STENCIL_TEST(ref >= s);
248 STENCIL_TEST(ref == s);
251 STENCIL_TEST(ref != s);