swrast: remove unused parameter
authorBrian Paul <brianp@vmware.com>
Tue, 10 Mar 2009 03:24:48 +0000 (21:24 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 2 Apr 2009 02:24:22 +0000 (20:24 -0600)
src/mesa/swrast/s_texcombine.c

index 550c99b7d23bfacde8137bff7a4fafcb8236bb01..3b7bbfe25832b0e74f04a820485402d0c63bf2ab 100644 (file)
@@ -572,7 +572,6 @@ swizzle_texels(GLuint swizzle, GLuint count, float4_array texels)
  * Input:  textureUnit - pointer to texture unit to apply
  *         format - base internal texture format
  *         n - number of fragments
- *         primary_rgba - primary colors (may alias rgba for single texture)
  *         texels - array of texel colors
  * InOut:  rgba - incoming fragment colors modified by texel colors
  *                according to the texture environment mode.
@@ -581,7 +580,6 @@ static void
 texture_apply( const GLcontext *ctx,
                const struct gl_texture_unit *texUnit,
                GLuint n,
-               float4_array primary_rgba,
                float4_array texel,
                GLchan rgbaChan[][4] )
 {
@@ -591,8 +589,6 @@ texture_apply( const GLcontext *ctx,
    GLenum format;
    GLfloat rgba[MAX_WIDTH][4];
 
-   (void) primary_rgba;
-
    ASSERT(texUnit);
    ASSERT(texUnit->_Current);
 
@@ -1123,8 +1119,7 @@ _swrast_texture_span( GLcontext *ctx, SWspan *span )
             float4_array texels =
                get_texel_array(swrast->TexelBuffer, unit, span->end);
             texture_apply( ctx, texUnit, span->end,
-                           primary_rgba, texels,
-                           span->array->rgba );
+                           texels, span->array->rgba );
          }
       }
    }