diff options
author | Brian Paul <[email protected]> | 2011-03-01 17:16:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-03-01 17:16:02 -0700 |
commit | a2924b488b8d77381779bbb5a0097c467678d39b (patch) | |
tree | 336fd59140ebc7cac79c02c31cdb9bcce9c59553 /src/mesa/vbo/vbo_exec_api.c | |
parent | 1c9ca21adb7943f564e7f258d8075d3ace7ec943 (diff) |
vbo: generate GL_INVALID_VALUE for bad glVertexAttrib index
Diffstat (limited to 'src/mesa/vbo/vbo_exec_api.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/vbo/vbo_exec_api.c b/src/mesa/vbo/vbo_exec_api.c index 2f9f3ec7c46..0116c1725cb 100644 --- a/src/mesa/vbo/vbo_exec_api.c +++ b/src/mesa/vbo/vbo_exec_api.c @@ -423,7 +423,7 @@ do { \ } while (0) -#define ERROR() _mesa_error( ctx, GL_INVALID_ENUM, __FUNCTION__ ) +#define ERROR(err) _mesa_error( ctx, err, __FUNCTION__ ) #define TAG(x) vbo_##x #include "vbo_attrib_tmp.h" @@ -1045,7 +1045,7 @@ VertexAttrib4f_nopos(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) if (index < MAX_VERTEX_GENERIC_ATTRIBS) ATTR(VBO_ATTRIB_GENERIC0 + index, 4, x, y, z, w); else - ERROR(); + ERROR(GL_INVALID_VALUE); } void GLAPIENTRY |