From: Brian Paul Date: Wed, 25 Aug 2004 14:52:01 +0000 (+0000) Subject: fix a couple bad casts X-Git-Tag: mesa-7.8~10679 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c544d36850c6e3627adbbd66df9b12bbe0f185b;p=platform%2Fupstream%2Fmesa.git fix a couple bad casts --- diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index 56a7250..c6c7cb4 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -1103,7 +1103,7 @@ _mesa_texstore_rgb888(STORE_PARAMS) srcWidth, srcHeight, srcDepth, srcFormat, srcType, srcAddr, srcPacking); - const GLchan *src = (const GLubyte *) tempImage; + const GLchan *src = (const GLchan *) tempImage; GLubyte *dstImage = (GLubyte *) dstAddr + dstZoffset * dstImageStride + dstYoffset * dstRowStride @@ -1207,7 +1207,7 @@ _mesa_texstore_bgr888(STORE_PARAMS) srcWidth, srcHeight, srcDepth, srcFormat, srcType, srcAddr, srcPacking); - const GLchan *src = (const GLubyte *) tempImage; + const GLchan *src = (const GLchan *) tempImage; GLubyte *dstImage = (GLubyte *) dstAddr + dstZoffset * dstImageStride + dstYoffset * dstRowStride