Home | History | Annotate | Download | only in gpu

Lines Matching defs:dstPoint

452     SkIPoint dstPoint = {0, 0};
453 if (this->copySurface(ast.texture(), rt, copyRect, dstPoint)) {
820 const SkIPoint& dstPoint,
824 *clippedDstPoint = dstPoint;
826 // clip the left edge to src and dst bounds, adjusting dstPoint if necessary
836 // clip the top edge to src and dst bounds, adjusting dstPoint if necessary
871 const SkIPoint& dstPoint) {
881 dstPoint,
884 SkASSERT(this->canCopySurface(dst, src, srcRect, dstPoint));
896 const SkIPoint& dstPoint) {
906 dstPoint,
917 const SkIPoint& dstPoint) {
921 SkASSERT(dstPoint.fX >= 0 && dstPoint.fY >= 0);
922 SkASSERT(dstPoint.fX + srcRect.width() <= dst->width() &&
923 dstPoint.fY + srcRect.height() <= dst->height());
931 const SkIPoint& dstPoint) {
932 if (!GrDrawTarget::onCanCopySurface(dst, src, srcRect, dstPoint)) {
942 matrix.setTranslate(SkIntToScalar(srcRect.fLeft - dstPoint.fX),
943 SkIntToScalar(srcRect.fTop - dstPoint.fY));
946 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX,
947 dstPoint.fY,