Home | History | Annotate | Download | only in main

Lines Matching refs:green

531  * \param green green color component.
542 _mesa_BlendColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
549 tmp[1] = green;
689 * \param green whether to mask writing of the green color component.
700 _mesa_ColorMask( GLboolean red, GLboolean green,
711 red, green, blue, alpha);
717 tmp[GCOMP] = green ? 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);
761 tmp[GCOMP] = green ? 0xff : 0x0;
772 ctx->Driver.ColorMaskIndexed(ctx, buf, red, green, blue, alpha);