remove GLint t, pass target to _mesa_init_teximage_fields()
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 17 Sep 2002 14:14:18 +0000 (14:14 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 17 Sep 2002 14:14:18 +0000 (14:14 +0000)
src/mesa/main/texstore.c

index d8ea2ee..c1fa760 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: texstore.c,v 1.39 2002/09/16 17:57:14 brianp Exp $ */
+/* $Id: texstore.c,v 1.40 2002/09/17 14:14:18 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -1646,7 +1646,6 @@ _mesa_generate_mipmap(GLcontext *ctx, GLenum target,
       GLint srcWidth, srcHeight, srcDepth;
       GLint dstWidth, dstHeight, dstDepth;
       GLint border, bytesPerTexel;
-      GLint t;
 
       srcImage = texObj->Image[level];
       ASSERT(srcImage);
@@ -1699,7 +1698,7 @@ _mesa_generate_mipmap(GLcontext *ctx, GLenum target,
          MESA_PBUFFER_FREE(dstImage->Data);
 
       /* initialize new image */
-      _mesa_init_teximage_fields(ctx, t, dstImage, dstWidth, dstHeight,
+      _mesa_init_teximage_fields(ctx, target, dstImage, dstWidth, dstHeight,
                                  dstDepth, border, srcImage->Format);
       dstImage->DriverData = NULL;
       dstImage->TexFormat = srcImage->TexFormat;