diff options
author | Brian Paul <[email protected]> | 2009-05-06 12:38:11 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-05-06 12:38:35 -0600 |
commit | 58544a28ad561d7d9e16deb048443c2d2b5c12d8 (patch) | |
tree | 946e00d2e5bb637c65928c2311565a8cc32cb2c8 | |
parent | bb1fb2a5444c6b7d83ccb47949f60ed9fb4f0f93 (diff) |
mesa: remove unnecessary buffer size check
-rw-r--r-- | src/mesa/main/api_validate.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/main/api_validate.c b/src/mesa/main/api_validate.c index ad150eea808..27049486ee9 100644 --- a/src/mesa/main/api_validate.c +++ b/src/mesa/main/api_validate.c @@ -166,13 +166,6 @@ _mesa_validate_DrawElements(GLcontext *ctx, /* Vertex buffer object tests */ if (ctx->Array.ElementArrayBufferObj->Name) { /* use indices in the buffer object */ - - if (!ctx->Array.ElementArrayBufferObj->Size) { - _mesa_warning(ctx, - "glDrawElements called with empty array elements buffer"); - return GL_FALSE; - } - /* make sure count doesn't go outside buffer bounds */ if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) { _mesa_warning(ctx, "glDrawElements index out of buffer bounds"); @@ -244,7 +237,6 @@ _mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode, /* Vertex buffer object tests */ if (ctx->Array.ElementArrayBufferObj->Name) { /* use indices in the buffer object */ - /* make sure count doesn't go outside buffer bounds */ if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) { _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds"); |