Lines Matching refs:dstX
2196 void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, in… in gdImageCopy() argument
2215 gdImageSetPixel (dst, dstX + x, dstY + y, c); in gdImageCopy()
2225 …gdImageSetPixel(dst, dstX + x, dstY + y, gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c]… in gdImageCopy()
2239 tox = dstX; in gdImageCopy()
2277 void gdImageCopyMerge (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int … in gdImageCopyMerge() argument
2286 tox = dstX; in gdImageCopyMerge()
2317 void gdImageCopyMergeGray (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, … in gdImageCopyMergeGray() argument
2327 tox = dstX; in gdImageCopyMergeGray()
2371 void gdImageCopyResized (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, in… in gdImageCopyResized() argument
2405 tox = dstX; in gdImageCopyResized()
2481 void gdImageCopyResampled (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, … in gdImageCopyResampled() argument
2487 gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in gdImageCopyResampled()
2493 for (x = dstX; (x < dstX + dstW); x++) { in gdImageCopyResampled()
2498 sx1 = ((double) x - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled()
2499 sx2 = ((double) (x + 1) - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled()