Merge branch 'mesa_7_5_branch'
authorBrian Paul <brianp@vmware.com>
Fri, 22 May 2009 20:09:35 +0000 (14:09 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 22 May 2009 20:09:35 +0000 (14:09 -0600)
1  2 
src/mesa/main/state.c

index bfbefa55d44483d4764e352c5be353200125c834,94e37e3dab5f9908d3f9a70517377a631e39d802..d5bdb63a97bc342ec7630c91f1958cc69765aed0
@@@ -194,9 -159,9 +194,9 @@@ update_arrays( GLcontext *ctx 
  
     /* 16..31 */
     if (ctx->VertexProgram._Current) {
-       for (i = VERT_ATTRIB_GENERIC0; i < VERT_ATTRIB_MAX; i++) {
 -      for (i = 0; i < Elements(ctx->Array.ArrayObj->VertexAttrib); i++) {
 -         if (ctx->Array.ArrayObj->VertexAttrib[i].Enabled) {
 -            min = MIN2(min, ctx->Array.ArrayObj->VertexAttrib[i]._MaxElement);
++      for (i = 0; i < Elements(arrayObj->VertexAttrib); i++) {
 +         if (arrayObj->VertexAttrib[i].Enabled) {
-             min = update_min(min, &arrayObj->VertexAttrib[i]);
++            min = MIN2(min, arrayObj->VertexAttrib[i]._MaxElement);
           }
        }
     }