Lines Matching refs:modeRGB

611 blend_equation_separate(struct gl_context *ctx, GLenum modeRGB, GLenum modeA,
621 if (ctx->Color.Blend[buf].EquationRGB != modeRGB ||
629 if (ctx->Color.Blend[0].EquationRGB != modeRGB ||
639 if ((modeRGB != modeA) && !ctx->Extensions.EXT_blend_equation_separate) {
648 * "NOTE: These enums are not accepted by the <modeRGB> or <modeAlpha>
651 if (!legal_simple_blend_equation(ctx, modeRGB)) {
653 "glBlendEquationSeparateEXT(modeRGB)");
666 ctx->Color.Blend[buf].EquationRGB = modeRGB;
673 ctx->Driver.BlendEquationSeparate(ctx, modeRGB, modeA);
678 _mesa_BlendEquationSeparate_no_error(GLenum modeRGB, GLenum modeA)
681 blend_equation_separate(ctx, modeRGB, modeA, true);
686 _mesa_BlendEquationSeparate(GLenum modeRGB, GLenum modeA)
692 _mesa_enum_to_string(modeRGB),
695 blend_equation_separate(ctx, modeRGB, modeA, false);
700 blend_equation_separatei(struct gl_context *ctx, GLuint buf, GLenum modeRGB,
703 if (ctx->Color.Blend[buf].EquationRGB == modeRGB &&
711 * "NOTE: These enums are not accepted by the <modeRGB> or <modeAlpha>
714 if (!legal_simple_blend_equation(ctx, modeRGB)) {
715 _mesa_error(ctx, GL_INVALID_ENUM, "glBlendEquationSeparatei(modeRGB)");
726 ctx->Color.Blend[buf].EquationRGB = modeRGB;
734 _mesa_BlendEquationSeparateiARB_no_error(GLuint buf, GLenum modeRGB,
738 blend_equation_separatei(ctx, buf, modeRGB, modeA, true);
746 _mesa_BlendEquationSeparateiARB(GLuint buf, GLenum modeRGB, GLenum modeA)
752 _mesa_enum_to_string(modeRGB),
761 blend_equation_separatei(ctx, buf, modeRGB, modeA, false);