Lines Matching refs:dstX
2310 void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, in… in gdImageCopy() argument
2329 gdImageSetPixel (dst, dstX + x, dstY + y, c); in gdImageCopy()
2339 …gdImageSetPixel(dst, dstX + x, dstY + y, gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c]… in gdImageCopy()
2353 tox = dstX; in gdImageCopy()
2391 void gdImageCopyMerge (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int … in gdImageCopyMerge() argument
2400 tox = dstX; in gdImageCopyMerge()
2431 void gdImageCopyMergeGray (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, … in gdImageCopyMergeGray() argument
2441 tox = dstX; in gdImageCopyMergeGray()
2485 void gdImageCopyResized (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, in… in gdImageCopyResized() argument
2519 tox = dstX; in gdImageCopyResized()
2595 void gdImageCopyResampled (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, … in gdImageCopyResampled() argument
2601 gdImageCopyResized (dst, src, dstX, dstY, srcX, srcY, dstW, dstH, srcW, srcH); in gdImageCopyResampled()
2607 for (x = dstX; (x < dstX + dstW); x++) { in gdImageCopyResampled()
2612 sx1 = ((double) x - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled()
2613 sx2 = ((double) (x + 1) - (double) dstX) * (double) srcW / dstW; in gdImageCopyResampled()