Lines Matching refs:srcHeight
68 tempImage = malloc(srcWidth * srcHeight * 3 * sizeof(GLubyte)); in _mesa_texstore_rgb_dxt1()
76 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgb_dxt1()
84 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight, in _mesa_texstore_rgb_dxt1()
90 tx_compress_dxt1(srccomps, srcWidth, srcHeight, pixels, in _mesa_texstore_rgb_dxt1()
121 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt1()
133 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_dxt1()
140 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight, in _mesa_texstore_rgba_dxt1()
146 tx_compress_dxt1(4, srcWidth, srcHeight, pixels, dst, dstRowStride, 4); in _mesa_texstore_rgba_dxt1()
176 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt3()
188 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_dxt3()
194 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight, in _mesa_texstore_rgba_dxt3()
200 tx_compress_dxt3(4, srcWidth, srcHeight, pixels, dst, dstRowStride); in _mesa_texstore_rgba_dxt3()
230 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt5()
242 srcWidth, srcHeight, srcDepth, in _mesa_texstore_rgba_dxt5()
248 pixels = _mesa_image_address2d(srcPacking, srcAddr, srcWidth, srcHeight, in _mesa_texstore_rgba_dxt5()
254 tx_compress_dxt5(4, srcWidth, srcHeight, pixels, dst, dstRowStride); in _mesa_texstore_rgba_dxt5()