[Mesa-dev] [PATCH] VertexAttribDivisor returns INVALID_VALUE if index is out of range
Matt Turner
mattst88 at gmail.com
Tue Nov 13 13:18:12 PST 2012
All the other range checks on index already return the proper error,
INVALID_VALUE.
Fixes gles3conform's instanced_arrays_invalid.
---
src/mesa/main/varray.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c
index 809b818..1ff77bc 100644
--- a/src/mesa/main/varray.c
+++ b/src/mesa/main/varray.c
@@ -1138,7 +1138,7 @@ _mesa_VertexAttribDivisor(GLuint index, GLuint divisor)
}
if (index >= ctx->Const.VertexProgram.MaxAttribs) {
- _mesa_error(ctx, GL_INVALID_ENUM, "glVertexAttribDivisor(index = %u)",
+ _mesa_error(ctx, GL_INVALID_VALUE, "glVertexAttribDivisor(index = %u)",
index);
return;
}
--
1.7.8.6
More information about the mesa-dev
mailing list