Home | History | Annotate | Download | only in main

Lines Matching refs:modeRGB

425 _mesa_BlendEquationSeparateEXT( GLenum modeRGB, GLenum modeA )
434 _mesa_lookup_enum_by_nr(modeRGB),
437 if ( (modeRGB != modeA) && !ctx->Extensions.EXT_blend_equation_separate ) {
443 if (!legal_blend_equation(ctx, modeRGB)) {
444 _mesa_error(ctx, GL_INVALID_ENUM, "glBlendEquationSeparateEXT(modeRGB)");
458 if (ctx->Color.Blend[buf].EquationRGB != modeRGB ||
469 ctx->Color.Blend[buf].EquationRGB = modeRGB;
475 ctx->Driver.BlendEquationSeparate(ctx, modeRGB, modeA);
483 _mesa_BlendEquationSeparatei(GLuint buf, GLenum modeRGB, GLenum modeA)
490 _mesa_lookup_enum_by_nr(modeRGB),
499 if (!legal_blend_equation(ctx, modeRGB)) {
500 _mesa_error(ctx, GL_INVALID_ENUM, "glBlendEquationSeparatei(modeRGB)");
509 if (ctx->Color.Blend[buf].EquationRGB == modeRGB &&
514 ctx->Color.Blend[buf].EquationRGB = modeRGB;
519 ctx->Driver.BlendEquationSeparatei(ctx, buf, modeRGB, modeA);