avoid side-effects in macro param
[mesa.git] / src / mesa / tnl / t_array_import.c
index 0379bd402b352769903070d9507bb0134eb0e93b..513e8931fc1ab0258c5d13c200f40ca2ff5b773c 100644 (file)
@@ -1,10 +1,10 @@
-/* $Id: t_array_import.c,v 1.6 2001/01/08 21:56:00 keithw Exp $ */
+/* $Id: t_array_import.c,v 1.18 2001/08/13 22:15:54 keithw Exp $ */
 
 /*
  * Mesa 3-D graphics library
  * Version:  3.5
  *
- * Copyright (C) 1999-2000  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
 
 #include "t_array_import.h"
 #include "t_context.h"
+#include "t_imm_debug.h"
 
 
 static void _tnl_import_vertex( GLcontext *ctx,
-                          GLboolean writeable,
-                          GLboolean stride )
+                               GLboolean writeable,
+                               GLboolean stride )
 {
    struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
 
-   tmp = _ac_import_vertex(ctx, 
+   tmp = _ac_import_vertex(ctx,
                           GL_FLOAT,
                           stride ? 4*sizeof(GLfloat) : 0,
                           0,
-                          writeable, 
+                          writeable,
                           &is_writeable);
-      
-   inputs->Obj.data = tmp->Ptr;
-   inputs->Obj.start = (GLfloat *)tmp->Ptr;
+
+   inputs->Obj.data = (GLfloat (*)[4]) tmp->Ptr;
+   inputs->Obj.start = (GLfloat *) tmp->Ptr;
    inputs->Obj.stride = tmp->StrideB;
    inputs->Obj.size = tmp->Size;
    inputs->Obj.flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
@@ -69,19 +70,19 @@ static void _tnl_import_vertex( GLcontext *ctx,
 }
 
 static void _tnl_import_normal( GLcontext *ctx,
-                          GLboolean writeable,
-                          GLboolean stride )
+                               GLboolean writeable,
+                               GLboolean stride )
 {
    struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
 
-   tmp = _ac_import_normal(ctx, GL_FLOAT, 
-                          stride ? 3*sizeof(GLfloat) : 0, writeable, 
+   tmp = _ac_import_normal(ctx, GL_FLOAT,
+                          stride ? 3*sizeof(GLfloat) : 0, writeable,
                           &is_writeable);
-      
-   inputs->Normal.data = tmp->Ptr;
-   inputs->Normal.start = (GLfloat *)tmp->Ptr;
+
+   inputs->Normal.data = (GLfloat (*)[3]) tmp->Ptr;
+   inputs->Normal.start = (GLfloat *) tmp->Ptr;
    inputs->Normal.stride = tmp->StrideB;
    inputs->Normal.flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
    if (inputs->Normal.stride != 3*sizeof(GLfloat))
@@ -92,6 +93,7 @@ static void _tnl_import_normal( GLcontext *ctx,
 
 
 static void _tnl_import_color( GLcontext *ctx,
+                              GLenum type,
                               GLboolean writeable,
                               GLboolean stride )
 {
@@ -99,62 +101,50 @@ static void _tnl_import_color( GLcontext *ctx,
    GLboolean is_writeable = 0;
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
 
-   tmp = _ac_import_color(ctx, 
-                         GL_UNSIGNED_BYTE, 
-                         stride ? 4*sizeof(GLubyte) : 0, 
+   tmp = _ac_import_color(ctx,
+                         type,
+                         stride ? 4*sizeof(GLfloat) : 0,
                          4,
-                         writeable, 
+                         writeable,
                          &is_writeable);
-      
-   inputs->Color.data = tmp->Ptr;
-   inputs->Color.start = (GLubyte *)tmp->Ptr;
-   inputs->Color.stride = tmp->StrideB;
-   inputs->Color.flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
-   if (inputs->Color.stride != 4*sizeof(GLubyte))
-      inputs->Color.flags |= VEC_BAD_STRIDE;
-   if (!is_writeable)
-      inputs->Color.flags |= VEC_NOT_WRITEABLE;
+
+   inputs->Color = *tmp;
 }
 
 
 static void _tnl_import_secondarycolor( GLcontext *ctx,
-                                  GLboolean writeable,
-                                  GLboolean stride )
+                                       GLenum type,
+                                       GLboolean writeable,
+                                       GLboolean stride )
 {
    struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
 
-   tmp = _ac_import_secondarycolor(ctx, GL_UNSIGNED_BYTE, 
-                                  stride ? 4*sizeof(GLubyte) : 0, 
+   tmp = _ac_import_secondarycolor(ctx, 
+                                  type,
+                                  stride ? 4*sizeof(GLfloat) : 0,
                                   4,
-                                  writeable, 
+                                  writeable,
                                   &is_writeable);
-      
-   inputs->SecondaryColor.data = tmp->Ptr;
-   inputs->SecondaryColor.start = (GLubyte *)tmp->Ptr;
-   inputs->SecondaryColor.stride = tmp->StrideB;
-   inputs->SecondaryColor.flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
-   if (inputs->SecondaryColor.stride != 4*sizeof(GLubyte))
-      inputs->SecondaryColor.flags |= VEC_BAD_STRIDE;
-   if (!is_writeable)
-      inputs->SecondaryColor.flags |= VEC_NOT_WRITEABLE;
+
+   inputs->SecondaryColor = *tmp;
 }
 
 static void _tnl_import_fogcoord( GLcontext *ctx,
-                            GLboolean writeable,
-                            GLboolean stride )
+                                 GLboolean writeable,
+                                 GLboolean stride )
 {
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
     struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
 
-   tmp = _ac_import_fogcoord(ctx, GL_FLOAT, 
-                            stride ? sizeof(GLfloat) : 0, writeable, 
+   tmp = _ac_import_fogcoord(ctx, GL_FLOAT,
+                            stride ? sizeof(GLfloat) : 0, writeable,
                             &is_writeable);
-      
-   inputs->FogCoord.data = tmp->Ptr;
-   inputs->FogCoord.start = (GLfloat *)tmp->Ptr;
+
+   inputs->FogCoord.data = (GLfloat *) tmp->Ptr;
+   inputs->FogCoord.start = (GLfloat *) tmp->Ptr;
    inputs->FogCoord.stride = tmp->StrideB;
    inputs->FogCoord.flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
    if (inputs->FogCoord.stride != sizeof(GLfloat))
@@ -164,19 +154,19 @@ static void _tnl_import_fogcoord( GLcontext *ctx,
 }
 
 static void _tnl_import_index( GLcontext *ctx,
-                         GLboolean writeable,
-                         GLboolean stride )
+                              GLboolean writeable,
+                              GLboolean stride )
 {
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
    struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
 
-   tmp = _ac_import_index(ctx, GL_UNSIGNED_INT, 
-                         stride ? sizeof(GLuint) : 0, writeable, 
+   tmp = _ac_import_index(ctx, GL_UNSIGNED_INT,
+                         stride ? sizeof(GLuint) : 0, writeable,
                          &is_writeable);
-      
-   inputs->Index.data = tmp->Ptr;
-   inputs->Index.start = (GLuint *)tmp->Ptr;
+
+   inputs->Index.data = (GLuint *) tmp->Ptr;
+   inputs->Index.start = (GLuint *) tmp->Ptr;
    inputs->Index.stride = tmp->StrideB;
    inputs->Index.flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
    if (inputs->Index.stride != sizeof(GLuint))
@@ -185,24 +175,24 @@ static void _tnl_import_index( GLcontext *ctx,
       inputs->Index.flags |= VEC_NOT_WRITEABLE;
 }
 
-   
+
 static void _tnl_import_texcoord( GLcontext *ctx,
-                            GLuint i,
-                            GLboolean writeable,
-                            GLboolean stride )
+                                 GLuint i,
+                                 GLboolean writeable,
+                                 GLboolean stride )
 {
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
    struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
 
-   tmp = _ac_import_texcoord(ctx, i, GL_FLOAT, 
-                            stride ? 4*sizeof(GLfloat) : 0, 
+   tmp = _ac_import_texcoord(ctx, i, GL_FLOAT,
+                            stride ? 4*sizeof(GLfloat) : 0,
                             0,
-                            writeable, 
+                            writeable,
                             &is_writeable);
-      
-   inputs->TexCoord[i].data = tmp->Ptr;
-   inputs->TexCoord[i].start = (GLfloat *)tmp->Ptr;
+
+   inputs->TexCoord[i].data = (GLfloat (*)[4]) tmp->Ptr;
+   inputs->TexCoord[i].start = (GLfloat *) tmp->Ptr;
    inputs->TexCoord[i].stride = tmp->StrideB;
    inputs->TexCoord[i].size = tmp->Size;
    inputs->TexCoord[i].flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
@@ -211,23 +201,23 @@ static void _tnl_import_texcoord( GLcontext *ctx,
    if (!is_writeable)
       inputs->TexCoord[i].flags |= VEC_NOT_WRITEABLE;
 }
-  
+
+
 static void _tnl_import_edgeflag( GLcontext *ctx,
-                            GLboolean writeable,
-                            GLboolean stride )
+                                 GLboolean writeable,
+                                 GLboolean stride )
 {
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
    struct gl_client_array *tmp;
    GLboolean is_writeable = 0;
 
-   tmp = _ac_import_edgeflag(ctx, GL_UNSIGNED_BYTE, 
-                            stride ? sizeof(GLubyte) : 0, 
-                            0, 
+   tmp = _ac_import_edgeflag(ctx, GL_UNSIGNED_BYTE,
+                            stride ? sizeof(GLubyte) : 0,
+                            0,
                             &is_writeable);
-      
-   inputs->EdgeFlag.data = tmp->Ptr;
-   inputs->EdgeFlag.start = (GLubyte *)tmp->Ptr;
+
+   inputs->EdgeFlag.data = (GLubyte *) tmp->Ptr;
+   inputs->EdgeFlag.start = (GLubyte *) tmp->Ptr;
    inputs->EdgeFlag.stride = tmp->StrideB;
    inputs->EdgeFlag.flags &= ~(VEC_BAD_STRIDE|VEC_NOT_WRITEABLE);
    if (inputs->EdgeFlag.stride != sizeof(GLubyte))
@@ -251,9 +241,12 @@ static void _tnl_upgrade_client_data( GLcontext *ctx,
    GLboolean writeable = (flags & VEC_NOT_WRITEABLE) != 0;
    GLboolean stride = (flags & VEC_BAD_STRIDE) != 0;
    struct vertex_arrays *inputs = &TNL_CONTEXT(ctx)->array_inputs;
+   GLuint ca_flags = 0;
    (void) inputs;
 
-   if ((required & VERT_CLIP) && VB->ClipPtr == VB->ObjPtr) 
+   if (writeable || stride) ca_flags |= CA_CLIENT_DATA;
+
+   if ((required & VERT_CLIP) && VB->ClipPtr == VB->ObjPtr)
       required |= VERT_OBJ;
 
 /*     _tnl_print_vert_flags("_tnl_upgrade_client_data", required); */
@@ -270,15 +263,16 @@ static void _tnl_upgrade_client_data( GLcontext *ctx,
       VB->importable_data &= ~VERT_NORM;
    }
 
-   if ((required & VERT_RGBA) && (VB->ColorPtr[0]->flags & flags)) {
+   if ((required & VERT_RGBA) && (VB->ColorPtr[0]->Flags & ca_flags)) {
       ASSERT(VB->ColorPtr[0] == &inputs->Color);
-      _tnl_import_color( ctx, writeable, stride );
+      _tnl_import_color( ctx, GL_FLOAT, writeable, stride );
       VB->importable_data &= ~VERT_RGBA;
    }
 
-   if ((required & VERT_SPEC_RGB) && (VB->SecondaryColorPtr[0]->flags&flags)) {
+   if ((required & VERT_SPEC_RGB) && 
+       (VB->SecondaryColorPtr[0]->Flags & ca_flags)) {
       ASSERT(VB->SecondaryColorPtr[0] == &inputs->SecondaryColor);
-      _tnl_import_secondarycolor( ctx, writeable, stride );
+      _tnl_import_secondarycolor( ctx, GL_FLOAT, writeable, stride );
       VB->importable_data &= ~VERT_SPEC_RGB;
    }
 
@@ -295,16 +289,14 @@ static void _tnl_upgrade_client_data( GLcontext *ctx,
    }
 
    if (required & VERT_TEX_ANY)
-      for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) 
+      for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++)
         if ((required & VERT_TEX(i)) && (VB->TexCoordPtr[i]->flags & flags)) {
            ASSERT(VB->TexCoordPtr[i] == &inputs->TexCoord[i]);
            _tnl_import_texcoord( ctx, i, writeable, stride );
            VB->importable_data &= ~VERT_TEX(i);
         }
-   
-}
-
 
+}
 
 
 
@@ -313,212 +305,86 @@ void _tnl_vb_bind_arrays( GLcontext *ctx, GLint start, GLsizei count )
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    struct vertex_buffer *VB = &tnl->vb;
    GLuint inputs = tnl->pipeline.inputs;
-   GLuint imports;
    struct vertex_arrays *tmp = &tnl->array_inputs;
+   GLuint i;
 
-   if (ctx->Array.LockCount) {
-      ASSERT(start == ctx->Array.LockFirst);
-      ASSERT(count == ctx->Array.LockCount);
-   }
-   
-   imports = tnl->pipeline.inputs;
+/*        fprintf(stderr, "%s %d..%d // %d..%d\n", __FUNCTION__, */
+/*           start, count, ctx->Array.LockFirst, ctx->Array.LockCount);  */
+/*        _tnl_print_vert_flags("    inputs", inputs);  */
+/*        _tnl_print_vert_flags("    _Enabled", ctx->Array._Enabled); */
+/*        _tnl_print_vert_flags("    importable", inputs & VERT_FIXUP); */
 
-   _ac_import_range( ctx, start, count );
-   
    VB->Count = count - start;
    VB->FirstClipped = VB->Count;
-
    VB->Elts = 0;
    VB->MaterialMask = 0;
    VB->Material = 0;
    VB->Flag = 0;
-   
-/*     _tnl_print_vert_flags("_tnl_vb_bind_arrays: inputs", inputs); */
-/*     _tnl_print_vert_flags("_tnl_vb_bind_arrays: imports", imports); */
-/*     _tnl_print_vert_flags("_tnl_vb_bind_arrays: _Enabled", ctx->Array._Enabled); */
+   VB->Primitive = tnl->tmp_primitive;
+   VB->PrimitiveLength = tnl->tmp_primitive_length;
+   VB->import_data = _tnl_upgrade_client_data;
+   VB->importable_data = inputs & VERT_FIXUP;
+
+   if (ctx->Array.LockCount) {
+      ASSERT(start == (GLint) ctx->Array.LockFirst);
+      ASSERT(count == (GLint) ctx->Array.LockCount);
+   }
+
+   _ac_import_range( ctx, start, count );
 
    if (inputs & VERT_OBJ) {
-      if (imports & VERT_OBJ) {
-        _tnl_import_vertex( ctx, 0, 0 ); 
-        tmp->Obj.count = VB->Count;
-      }
+      _tnl_import_vertex( ctx, 0, 0 );
+      tmp->Obj.count = VB->Count;
       VB->ObjPtr = &tmp->Obj;
    }
 
    if (inputs & VERT_NORM) {
-      if (imports & VERT_NORM) {
-        _tnl_import_normal( ctx, 0, 0 ); 
-        tmp->Normal.count = VB->Count;
-      }
+      _tnl_import_normal( ctx, 0, 0 );
+      tmp->Normal.count = VB->Count;
       VB->NormalPtr = &tmp->Normal;
    }
 
    if (inputs & VERT_RGBA) {
-      if (imports & VERT_RGBA) {
-        _tnl_import_color( ctx, 0, 0 ); 
-        tmp->Color.count = VB->Count;
-      }
+      _tnl_import_color( ctx, 0, 0, 0 );
       VB->ColorPtr[0] = &tmp->Color;
       VB->ColorPtr[1] = 0;
    }
 
-   if (inputs & VERT_INDEX) {
-      if (imports & VERT_INDEX) {
-        _tnl_import_index( ctx, 0, 0 ); 
-        tmp->Index.count = VB->Count;
-      }
-      VB->IndexPtr[0] = &tmp->Index;
-      VB->IndexPtr[1] = 0;
-   }      
-
-
-   if (inputs & VERT_FOG_COORD) {
-      if (imports & VERT_FOG_COORD) {
-        _tnl_import_fogcoord( ctx, 0, 0 ); 
-        tmp->FogCoord.count = VB->Count;
-      }
-      VB->FogCoordPtr = &tmp->FogCoord;
-   }
-    
-   if (inputs & VERT_EDGE) {
-      _tnl_import_edgeflag( ctx, GL_TRUE, sizeof(GLboolean) ); 
-      VB->EdgeFlag = (GLboolean *) tmp->EdgeFlag.data;
-   }
-    
-   if (inputs & VERT_SPEC_RGB) {
-      if (imports & VERT_SPEC_RGB) {
-        _tnl_import_secondarycolor( ctx, 0, 0 ); 
-        tmp->SecondaryColor.count = VB->Count;
-      }
-      VB->SecondaryColorPtr[0] = &tmp->SecondaryColor;
-      VB->SecondaryColorPtr[1] = 0;
-   }
-   
    if (inputs & VERT_TEX_ANY) {
-      GLuint i;
-      for (i = 0; i < ctx->Const.MaxTextureUnits ; i++)
+      for (i = 0; i < ctx->Const.MaxTextureUnits ; i++) {
         if (inputs & VERT_TEX(i)) {
-           if (imports & VERT_TEX(i)) {
-              _tnl_import_texcoord( ctx, i, 0, 0 ); 
-              tmp->TexCoord[i].count = VB->Count;
-           }
+           _tnl_import_texcoord( ctx, i, 0, 0 );
+           tmp->TexCoord[i].count = VB->Count;
            VB->TexCoordPtr[i] = &tmp->TexCoord[i];
         }
+      }
    }
 
-   VB->Primitive = tnl->tmp_primitive;
-   VB->PrimitiveLength = tnl->tmp_primitive_length;
-   VB->import_data = _tnl_upgrade_client_data;
-   VB->importable_data = imports & VERT_FIXUP;
-/*     _tnl_print_vert_flags("_tnl_vb_bind_arrays: importable", VB->importable_data); */
-   
-}
-
-
-
-
-/* Function to fill an immediate struct with the effects of
- * consecutive calls to ArrayElement with consecutive indices.
- */
-void _tnl_fill_immediate_drawarrays( GLcontext *ctx, struct immediate *IM,
-                                    GLuint start, GLuint count ) 
-{
-   TNLcontext *tnl = TNL_CONTEXT(ctx);
-   GLuint required = ctx->Array._Enabled;
-   GLuint n = count - start;
-   GLuint i;
+   if (inputs & (VERT_INDEX|VERT_FOG_COORD|VERT_EDGE|VERT_SPEC_RGB)) {
+      if (inputs & VERT_INDEX) {
+        _tnl_import_index( ctx, 0, 0 );
+        tmp->Index.count = VB->Count;
+        VB->IndexPtr[0] = &tmp->Index;
+        VB->IndexPtr[1] = 0;
+      }
 
-   if (!ctx->CompileFlag)
-      required &= tnl->pipeline.inputs;
-
-   if (MESA_VERBOSE&VERBOSE_IMMEDIATE)
-      fprintf(stderr, "exec_full_array_elements %d .. %d\n", start, count);
-
-   _math_trans_4f( IM->Obj + IM->Start,
-                  ctx->Array.Vertex.Ptr,
-                  ctx->Array.Vertex.StrideB,
-                  ctx->Array.Vertex.Type,
-                  ctx->Array.Vertex.Size,
-                  start, n );
-
-   if (ctx->Array.Vertex.Size == 4)
-      required |= VERT_OBJ_234;
-   else if (ctx->Array.Vertex.Size == 3)
-      required |= VERT_OBJ_23;
-
-       
-   if (required & VERT_NORM) {
-      _math_trans_3f( IM->Normal + IM->Start,
-                     ctx->Array.Normal.Ptr,
-                     ctx->Array.Normal.StrideB,
-                     ctx->Array.Normal.Type,
-                     start, n );
-   }
-       
-   if (required & VERT_EDGE) {
-      _math_trans_1ub( IM->EdgeFlag + IM->Start,
-                      ctx->Array.EdgeFlag.Ptr,
-                      ctx->Array.EdgeFlag.StrideB,
-                      ctx->Array.EdgeFlag.Type,
-                      start, n );
-   }
-       
-   if (required & VERT_RGBA) {
-      _math_trans_4ub( IM->Color + IM->Start,
-                      ctx->Array.Color.Ptr, 
-                      ctx->Array.Color.StrideB,
-                      ctx->Array.Color.Type,
-                      ctx->Array.Color.Size,
-                      start, n );
-   }
+      if (inputs & VERT_FOG_COORD) {
+        _tnl_import_fogcoord( ctx, 0, 0 );
+        tmp->FogCoord.count = VB->Count;
+        VB->FogCoordPtr = &tmp->FogCoord;
+      }
 
-   if (required & VERT_SPEC_RGB) {
-      _math_trans_4ub( IM->SecondaryColor + IM->Start,
-                      ctx->Array.SecondaryColor.Ptr,
-                      ctx->Array.SecondaryColor.StrideB, 
-                      ctx->Array.SecondaryColor.Type, 
-                      ctx->Array.SecondaryColor.Size, 
-                      start, n );
-   }
+      if (inputs & VERT_EDGE) {
+        _tnl_import_edgeflag( ctx, GL_TRUE, sizeof(GLboolean) );
+        VB->EdgeFlag = (GLboolean *) tmp->EdgeFlag.data;
+      }
 
-   if (required & VERT_FOG_COORD) {
-      _math_trans_1f( IM->FogCoord + IM->Start,
-                     ctx->Array.FogCoord.Ptr, 
-                     ctx->Array.FogCoord.StrideB,
-                     ctx->Array.FogCoord.Type,
-                     start, n );
-   }
-       
-   if (required & VERT_INDEX) {
-      _math_trans_1ui( IM->Index + IM->Start,
-                      ctx->Array.Index.Ptr, 
-                      ctx->Array.Index.StrideB, 
-                      ctx->Array.Index.Type, 
-                      start, n );
-   }
-       
-   if (required & VERT_TEX_ANY) {
-      for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) {
-        if (required & VERT_TEX(i)) {
-           _math_trans_4f( IM->TexCoord[i] + IM->Start,
-                           ctx->Array.TexCoord[i].Ptr,
-                           ctx->Array.TexCoord[i].StrideB,
-                           ctx->Array.TexCoord[i].Size,
-                           ctx->Array.TexCoord[i].Type,
-                           start, n );
-
-           if (ctx->Array.TexCoord[i].Size == 4)
-              IM->TexSize |= TEX_SIZE_4(i);
-           else if (ctx->Array.TexCoord[i].Size == 3)
-              IM->TexSize |= TEX_SIZE_3(i);           
-        }
+      if (inputs & VERT_SPEC_RGB) {
+        _tnl_import_secondarycolor( ctx, 0, 0, 0 );
+        VB->SecondaryColorPtr[0] = &tmp->SecondaryColor;
+        VB->SecondaryColorPtr[1] = 0;
       }
    }
-   
-   IM->Count = IM->Start + n;
-   IM->Flag[IM->Start] |= required;
-   for (i = IM->Start+1 ; i < IM->Count ; i++) 
-      IM->Flag[i] = required;
 }