From: Brian Date: Sun, 23 Sep 2007 19:56:46 +0000 (-0600) Subject: fix DrawRangeElements error msg X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef5935bc94a1439eb8f1731732a3eabd0e360407;p=mesa.git fix DrawRangeElements error msg --- diff --git a/src/mesa/main/api_validate.c b/src/mesa/main/api_validate.c index 3e4fe46b1df..e2eebccd477 100644 --- a/src/mesa/main/api_validate.c +++ b/src/mesa/main/api_validate.c @@ -214,7 +214,7 @@ _mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode, /* make sure count doesn't go outside buffer bounds */ if (indexBytes > ctx->Array.ElementArrayBufferObj->Size) { - _mesa_warning(ctx, "glDrawElements index out of buffer bounds"); + _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds"); return GL_FALSE; } }