Lines Matching defs:modeA
611 blend_equation_separate(struct gl_context *ctx, GLenum modeRGB, GLenum modeA,
622 ctx->Color.Blend[buf].EquationA != modeA) {
630 ctx->Color.Blend[0].EquationA != modeA) {
639 if ((modeRGB != modeA) && !ctx->Extensions.EXT_blend_equation_separate) {
657 if (!legal_simple_blend_equation(ctx, modeA)) {
658 _mesa_error(ctx, GL_INVALID_ENUM, "glBlendEquationSeparateEXT(modeA)");
667 ctx->Color.Blend[buf].EquationA = modeA;
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)
693 _mesa_enum_to_string(modeA));
695 blend_equation_separate(ctx, modeRGB, modeA, false);
701 GLenum modeA, bool no_error)
704 ctx->Color.Blend[buf].EquationA == modeA)
719 if (!legal_simple_blend_equation(ctx, modeA)) {
720 _mesa_error(ctx, GL_INVALID_ENUM, "glBlendEquationSeparatei(modeA)");
727 ctx->Color.Blend[buf].EquationA = modeA;
735 GLenum modeA)
738 blend_equation_separatei(ctx, buf, modeRGB, modeA, true);
746 _mesa_BlendEquationSeparateiARB(GLuint buf, GLenum modeRGB, GLenum modeA)
753 _mesa_enum_to_string(modeA));
761 blend_equation_separatei(ctx, buf, modeRGB, modeA, false);