summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/blend.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-10-14 09:34:39 -0600
committerBrian Paul <brianp@vmware.com>2015-10-15 07:21:07 -0600
commitd21e17f48f8e155918de9420378a3b233e4ca98c (patch)
treeff8fd0c773254d1c6af978b6ca77ec21ad37c722 /src/mesa/main/blend.c
parent1d751655012c7b8aafbeb90d02e5314a8eedc890 (diff)
downloadexternal_mesa3d-d21e17f48f8e155918de9420378a3b233e4ca98c.zip
external_mesa3d-d21e17f48f8e155918de9420378a3b233e4ca98c.tar.gz
external_mesa3d-d21e17f48f8e155918de9420378a3b233e4ca98c.tar.bz2
mesa: fix incorrect error string in _mesa_BlendEquationiARB()
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/main/blend.c')
-rw-r--r--src/mesa/main/blend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c
index d225f3d..a7b7c5b 100644
--- a/src/mesa/main/blend.c
+++ b/src/mesa/main/blend.c
@@ -407,7 +407,7 @@ _mesa_BlendEquationiARB(GLuint buf, GLenum mode)
buf, _mesa_enum_to_string(mode));
if (buf >= ctx->Const.MaxDrawBuffers) {
- _mesa_error(ctx, GL_INVALID_VALUE, "glBlendFuncSeparatei(buffer=%u)",
+ _mesa_error(ctx, GL_INVALID_VALUE, "glBlendEquationi(buffer=%u)",
buf);
return;
}