diff options
author | Kenneth Graunke <[email protected]> | 2014-08-22 23:01:15 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-09-24 23:14:26 -0700 |
commit | 23247e8059b92cd0330fbf9a4ec8b7227c53d50f (patch) | |
tree | 8f1a776318fa14284e4378b3446bc31c450856e3 /src/mesa/main/arrayobj.c | |
parent | f81052dc9b99eca765a44decd01af0335350d0b2 (diff) |
mesa: Use VertexArray, not _VertexArray, in array size expressions.
Both sizes are VERT_ATTRIB_MAX, so this has no effect. But it drops a
few trivial uses of the derived state.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Fredrik Höglund <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/arrayobj.c')
-rw-r--r-- | src/mesa/main/arrayobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/arrayobj.c b/src/mesa/main/arrayobj.c index 0d77b112b31..6440ea670b2 100644 --- a/src/mesa/main/arrayobj.c +++ b/src/mesa/main/arrayobj.c @@ -230,7 +230,7 @@ _mesa_initialize_vao(struct gl_context *ctx, obj->RefCount = 1; /* Init the individual arrays */ - for (i = 0; i < Elements(obj->_VertexAttrib); i++) { + for (i = 0; i < Elements(obj->VertexAttrib); i++) { switch (i) { case VERT_ATTRIB_WEIGHT: init_array(ctx, obj, VERT_ATTRIB_WEIGHT, 1, GL_FLOAT); |