Home | History | Annotate | Download | only in swrast

Lines Matching defs:writeMask

132    const GLubyte wrtmask = ctx->Stencil.WriteMask[face];
500 const GLuint stencilMask = ctx->Stencil.WriteMask[0];
525 /* need to apply writemask */
554 const GLuint writeMask = ctx->Stencil.WriteMask[0];
561 if (!rb || writeMask == 0)
571 if ((writeMask & stencilMax) != stencilMax) {
590 GLubyte clear = ctx->Stencil.Clear & writeMask & 0xff;
591 GLubyte mask = (~writeMask) & 0xff;
617 GLuint clear = (ctx->Stencil.Clear & writeMask & 0xff) << 24;
618 GLuint mask = (((~writeMask) & 0xff) << 24) | 0xffffff;
630 GLuint clear = ctx->Stencil.Clear & writeMask & 0xff;
631 GLuint mask = 0xffffff00 | ((~writeMask) & 0xff);