Lines Matching defs:width
768 static deBool writeCompressedPNG (png_structp png, png_infop info, png_byte** rowPointers, int width, int height, int colorFormat)
773 png_set_IHDR(png, info, (png_uint_32)width, (png_uint_32)height,
789 static deBool compressImagePNG (Buffer* buffer, qpImageFormat imageFormat, int width, int height, int rowStride, const void* data)
817 compressOk = writeCompressedPNG(png, info, rowPointers, width, height,
899 * \param width Width in pixels
911 int width,
925 DE_ASSERT(deInRange32(width, 1, 32768));
948 deBool compressOk = compressImagePNG(&compressedBuffer, imageFormat, width, height, stride, data);
969 int packedStride = pixelSize*width;
980 memcpy(&compressedBuffer.data[packedStride*row], &((const deUint8*)data)[row*stride], (size_t)(pixelSize*width));
1007 int32ToString(width, widthStr);