Lines Matching refs:srcY
567 /** Copies a SkRect of pixels to dstPixels. Copy starts at (srcX, srcY), and does not
582 srcX and srcY may be negative to copy only top or left of source. Returns
584 abs(srcX) >= Pixmap width(), or if abs(srcY) >= Pixmap height().
590 @param srcY row index whose absolute value is less than height()
594 int srcY) const;
596 /** Copies a SkRect of pixels to dst. Copy starts at (srcX, srcY), and does not
609 srcX and srcY may be negative to copy only top or left of source. Returns
611 abs(srcX) >= Pixmap width(), or if abs(srcY) >= Pixmap height().
615 @param srcY row index whose absolute value is less than height()
618 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const {
619 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY);