diff options
author | Brian Paul <[email protected]> | 2009-05-22 14:23:02 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-05-22 14:23:02 -0600 |
commit | d30163ad4201dcd5a594694ab87be9e59db47edd (patch) | |
tree | 60a31c222bfe457950ed6511a9fc4f780bdb87ec /src/mesa/main/dlist.c | |
parent | b625fbaef2564236357f94eca803a15187e2636d (diff) |
mesa: use Elements() for loop limit
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 5120e516e08..dd73a1906b8 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -6806,10 +6806,10 @@ _mesa_NewList(GLuint name, GLenum mode) /* Reset acumulated list state: */ - for (i = 0; i < VERT_ATTRIB_MAX; i++) + for (i = 0; i < Elements(ctx->ListState.ActiveAttribSize); i++) ctx->ListState.ActiveAttribSize[i] = 0; - for (i = 0; i < MAT_ATTRIB_MAX; i++) + for (i = 0; i < Elements(ctx->ListState.ActiveMaterialSize); i++) ctx->ListState.ActiveMaterialSize[i] = 0; ctx->Driver.CurrentSavePrimitive = PRIM_UNKNOWN; |