Lines Matching refs:dstRect
52 /** Fills 'dstRect' with 'fp' */
53 virtual void fillRectWithFP(const SkIRect& dstRect, std::unique_ptr<GrFragmentProcessor>) = 0;
59 void fillRectWithFP(const SkIRect& dstRect,
63 /** Fills 'dstRect' with 'fp' using a local matrix that maps 'srcRect' to 'dstRect' */
65 const SkIRect& dstRect,
67 SkMatrix lm = SkMatrix::RectToRect(SkRect::Make(dstRect), srcRect);
68 this->fillRectWithFP(dstRect, lm, std::move(fp));
71 /** Fills 'dstRect' with 'fp' using a local matrix that maps 'srcRect' to 'dstRect' */
73 const SkIRect& dstRect,
75 this->fillRectToRectWithFP(SkRect::Make(srcRect), dstRect, std::move(fp));
94 * Draws the src texture with no matrix. The dstRect is the dstPoint with the width and height
95 * of the srcRect. The srcRect and dstRect are clipped to the bounds of the src and dst surfaces