Lines Matching refs:dstRect
73 SkRect dstRect;
74 if (srcQuad.asRect(&srcRect) && dstQuad.asRect(&dstRect)) {
79 bool filter = srcRect.width() != dstRect.width() || srcRect.height() != dstRect.height() ||
80 SkScalarFraction(srcRect.fLeft) != SkScalarFraction(dstRect.fLeft) ||
81 SkScalarFraction(srcRect.fTop) != SkScalarFraction(dstRect.fTop);
82 bool mm = srcRect.width() > dstRect.width() || srcRect.height() > dstRect.height();
545 // Use dstRect/srcRect unless dstClip is provided, in which case derive new source
546 // coordinates by mapping dstClipQuad by the dstRect to srcRect transform.