From: Brian Paul Date: Fri, 22 May 2009 20:32:37 +0000 (-0600) Subject: mesa: use Elements() for loop limit X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce7a049191c14be1d3dd456cdc72463b01ccf34c;p=mesa.git mesa: use Elements() for loop limit --- diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 5e0f2d7b1bd..ff9dd488c74 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -455,7 +455,7 @@ _mesa_init_current(GLcontext *ctx) GLuint i; /* Init all to (0,0,0,1) */ - for (i = 0; i < VERT_ATTRIB_MAX; i++) { + for (i = 0; i < Elements(ctx->Current.Attrib); i++) { ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 ); }