Lines Matching refs:dstPoint

380                            const SkIPoint& dstPoint) {  in resolveImage()  argument
390 int32_t dstY = dstPoint.fY; in resolveImage()
396 dstY = dst->height() - dstPoint.fY - srcVkRect.height(); in resolveImage()
403 resolveInfo.dstOffset = { dstPoint.fX, dstY, 0 }; in resolveImage()
1379 const SkIPoint& dstPoint) { in copySurfaceAsCopyImage() argument
1398 int32_t dstY = dstPoint.fY; in copySurfaceAsCopyImage()
1404 dstY = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsCopyImage()
1412 copyRegion.dstOffset = { dstPoint.fX, dstY, 0 }; in copySurfaceAsCopyImage()
1423 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, in copySurfaceAsCopyImage()
1456 const SkIPoint& dstPoint) { in copySurfaceAsBlit() argument
1476 dstRect.fLeft = dstPoint.fX; in copySurfaceAsBlit()
1477 dstRect.fRight = dstPoint.fX + srcRect.width(); in copySurfaceAsBlit()
1488 dstRect.fTop = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsBlit()
1490 dstRect.fTop = dstPoint.fY; in copySurfaceAsBlit()
1543 const SkIPoint& dstPoint) { in copySurfaceAsResolve() argument
1547 this->resolveImage(dstRT, srcRT, srcRect, dstPoint); in copySurfaceAsResolve()
1553 const SkIPoint& dstPoint) { in onCopySurface() argument
1555 this->copySurfaceAsResolve(dst, src, srcRect, dstPoint); in onCopySurface()
1563 if (fCopyManager.copySurfaceAsDraw(this, dst, src, srcRect, dstPoint)) { in onCopySurface()
1587 this->copySurfaceAsCopyImage(dst, src, dstImage, srcImage, srcRect, dstPoint); in onCopySurface()
1592 this->copySurfaceAsBlit(dst, src, dstImage, srcImage, srcRect, dstPoint); in onCopySurface()