From: Marek Olšák Date: Thu, 28 Apr 2011 17:34:56 +0000 (+0200) Subject: mesa: remove unused variable bytesPerRow X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aeac658e25bd0d939b503000676a4b3c3114bf41;p=mesa.git mesa: remove unused variable bytesPerRow --- 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