diff options
author | Samuel Pitoiset <[email protected]> | 2017-08-23 16:43:32 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-08-24 11:01:47 +0200 |
commit | f8b47b4789770ac9c502a4722a10437b460c3b21 (patch) | |
tree | b68afd5ce85cfd99762e6603b79d093d8eb002f2 /src/mesa/main/blend.c | |
parent | 4009370232f87227655f8f41949e9a56650fb1f5 (diff) |
mesa: fix debug/error messages in glColorMaski()
Trivial. While we are at it, adjust indentation.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/blend.c')
-rw-r--r-- | src/mesa/main/blend.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c index 5c496d99705..01721ab615d 100644 --- a/src/mesa/main/blend.c +++ b/src/mesa/main/blend.c @@ -990,18 +990,18 @@ _mesa_ColorMask( GLboolean red, GLboolean green, * For GL_EXT_draw_buffers2 and GL3 */ void GLAPIENTRY -_mesa_ColorMaski( GLuint buf, GLboolean red, GLboolean green, - GLboolean blue, GLboolean alpha ) +_mesa_ColorMaski(GLuint buf, GLboolean red, GLboolean green, + GLboolean blue, GLboolean alpha) { GLubyte tmp[4]; GET_CURRENT_CONTEXT(ctx); if (MESA_VERBOSE & VERBOSE_API) - _mesa_debug(ctx, "glColorMaskIndexed %u %d %d %d %d\n", + _mesa_debug(ctx, "glColorMaski %u %d %d %d %d\n", buf, red, green, blue, alpha); if (buf >= ctx->Const.MaxDrawBuffers) { - _mesa_error(ctx, GL_INVALID_VALUE, "glColorMaskIndexed(buf=%u)", buf); + _mesa_error(ctx, GL_INVALID_VALUE, "glColorMaski(buf=%u)", buf); return; } |