diff options
author | Brian Paul <brianp@vmware.com> | 2009-03-09 21:24:48 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-04-01 20:24:22 -0600 |
commit | 0d8d90482331b219b861e500a0bc830133b1b377 (patch) | |
tree | 6b13fdf8a016a10e630a30aa64303da9bc791141 /src/mesa/swrast/s_texcombine.c | |
parent | aef2e1c1dcda77b6dc5fcfd2de7c9d720effa4e7 (diff) |
swrast: remove unused parameter
Diffstat (limited to 'src/mesa/swrast/s_texcombine.c')
-rw-r--r-- | src/mesa/swrast/s_texcombine.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mesa/swrast/s_texcombine.c b/src/mesa/swrast/s_texcombine.c index 550c99b7d2..3b7bbfe258 100644 --- a/src/mesa/swrast/s_texcombine.c +++ b/src/mesa/swrast/s_texcombine.c @@ -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 ); } } } |