Lines Matching refs:dstX
2254 void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, in… in gdImageCopy() argument
2273 gdImageSetPixel (dst, dstX + x, dstY + y, c); in gdImageCopy()
2283 …gdImageSetPixel(dst, dstX + x, dstY + y, gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c]… in gdImageCopy()
2297 tox = dstX; in gdImageCopy()
2335 void gdImageCopyMerge (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int … in gdImageCopyMerge() argument
2344 tox = dstX; in gdImageCopyMerge()
2375 void gdImageCopyMergeGray (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, … in gdImageCopyMergeGray() argument
2385 tox = dstX; in gdImageCopyMergeGray()
2429 void gdImageCopyResized (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, in… in gdImageCopyResized() argument
2463 tox = dstX; in gdImageCopyResized()
2539 void gdImageCopyResampled (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, … in gdImageCopyResampled() argument
2545 gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in gdImageCopyResampled()
2551 for (x = dstX; (x < dstX + dstW); x++) { in gdImageCopyResampled()
2556 sx1 = ((double) x - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled()
2557 sx2 = ((double) (x + 1) - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled()