Lines Matching refs:srcWidth
62 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType) != srccomps * srcWidth * sizeof(GLubyte) ||
67 int rgbRowStride = 3 * srcWidth * sizeof(GLubyte);
68 tempImage = malloc(srcWidth * srcHeight * 3 * sizeof(GLubyte));
76 srcWidth, srcHeight, srcDepth,
84 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight,
90 tx_compress_dxt1(srccomps, srcWidth, srcHeight, pixels,
108 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte);
116 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType) != rgbaRowStride ||
121 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte));
133 srcWidth, srcHeight, srcDepth,
140 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight,
146 tx_compress_dxt1(4, srcWidth, srcHeight, pixels, dst, dstRowStride, 4);
163 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte);
171 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType) != rgbaRowStride ||
176 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte));
188 srcWidth, srcHeight, srcDepth,
194 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight,
200 tx_compress_dxt3(4, srcWidth, srcHeight, pixels, dst, dstRowStride);
217 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte);
225 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType) != rgbaRowStride ||
230 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte));
242 srcWidth, srcHeight, srcDepth,
248 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight,
254 tx_compress_dxt5(4, srcWidth, srcHeight, pixels, dst, dstRowStride);