Home | History | Annotate | Download | only in main

Lines Matching refs:red

530  * \param red red color component.
542 _mesa_BlendColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
548 tmp[0] = red;
688 * \param red whether to mask writing of the red color component.
700 _mesa_ColorMask( GLboolean red, GLboolean green,
711 red, green, blue, alpha);
716 tmp[RCOMP] = red ? 0xff : 0x0;
733 ctx->Driver.ColorMask( ctx, red, green, blue, alpha );
741 _mesa_ColorMaskIndexed( GLuint buf, GLboolean red, GLboolean green,
750 buf, red, green, blue, alpha);
760 tmp[RCOMP] = red ? 0xff : 0x0;
772 ctx->Driver.ColorMaskIndexed(ctx, buf, red, green, blue, alpha);