From aeac658e25bd0d939b503000676a4b3c3114bf41 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 28 Apr 2011 19:34:56 +0200 Subject: [PATCH] mesa: remove unused variable bytesPerRow --- src/mesa/main/texstore.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index d694ab8e5ad..6da3e4eb7b4 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -4208,11 +4208,9 @@ _mesa_texstore_rgb9_e5(TEXSTORE_PARAMS) srcPacking, ctx->_ImageTransferState); const GLfloat *srcRow = tempImage; - GLint bytesPerRow; GLint img, row, col; if (!tempImage) return GL_FALSE; - bytesPerRow = srcWidth * 3 * sizeof(GLfloat); for (img = 0; img < srcDepth; img++) { GLubyte *dstRow = (GLubyte *) dstAddr + dstImageOffsets[dstZoffset + img] * 4 @@ -4263,11 +4261,9 @@ _mesa_texstore_r11_g11_b10f(TEXSTORE_PARAMS) srcPacking, ctx->_ImageTransferState); const GLfloat *srcRow = tempImage; - GLint bytesPerRow; GLint img, row, col; if (!tempImage) return GL_FALSE; - bytesPerRow = srcWidth * 3 * sizeof(GLfloat); for (img = 0; img < srcDepth; img++) { GLubyte *dstRow = (GLubyte *) dstAddr + dstImageOffsets[dstZoffset + img] * 4 -- 2.11.0