Lines Matching full:clip
272 in the clip, we don't have to worry about antialiasing.
867 const SkRasterClip& clip = looper.getRC();
876 SkScan::AntiFillRect(localDevRect, clip, blitter);
878 SkScan::FillRect(localDevRect, clip, blitter);
883 SkScan::AntiFrameRect(localDevRect, strokeSize, clip, blitter);
885 SkScan::FrameRect(localDevRect, strokeSize, clip, blitter);
890 SkScan::AntiHairRect(localDevRect, clip, blitter);
892 SkScan::HairRect(localDevRect, clip, blitter);
1256 static bool clipped_out(const SkMatrix& matrix, const SkRasterClip& clip,
1260 return clipped_out(matrix, clip, r);
1263 static bool clipHandlesSprite(const SkRasterClip& clip, int x, int y, const SkPixmap& pmap) {
1264 return clip.isBW() || clip.quickContains(x, y, x + pmap.width(), y + pmap.height());
1535 void blitMask(const SkMask& mask, const SkIRect& clip) const {
1544 fBlitter->blitMask(mask, clip);
1940 const SkRasterClip& clip = *fRC;
1945 hairProc(array, 4, clip, blitter.get());
1999 // (possibly) trim the bounds to reflect the clip
2004 // clip, and bring down the renderer (at least on finite RAM machines
2024 SkRasterClip clip;
2028 clip.setRect(SkIRect::MakeWH(mask.fBounds.width(), mask.fBounds.height()));
2032 draw.fRC = &clip;
2033 draw.fClip = &clip.bwRgn();