summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/blend.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/blend.c')
-rw-r--r--src/mesa/main/blend.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c
index 84029ac6be9..8fb2d692a34 100644
--- a/src/mesa/main/blend.c
+++ b/src/mesa/main/blend.c
@@ -569,6 +569,17 @@ blend_equationi(struct gl_context *ctx, GLuint buf, GLenum mode,
ctx->Color._AdvancedBlendMode = advanced_mode;
}
+
+void GLAPIENTRY
+_mesa_BlendEquationiARB_no_error(GLuint buf, GLenum mode)
+{
+ GET_CURRENT_CONTEXT(ctx);
+
+ enum gl_advanced_blend_mode advanced_mode = advanced_blend_mode(ctx, mode);
+ blend_equationi(ctx, buf, mode, advanced_mode);
+}
+
+
void GLAPIENTRY
_mesa_BlendEquationiARB(GLuint buf, GLenum mode)
{