Lines Matching defs:clip
670 const SkRasterClip& clip = *fRC;
679 SkScan::AntiFillRect(devRect, clip, blitter);
681 SkScan::FillRect(devRect, clip, blitter);
686 SkScan::AntiFrameRect(devRect, strokeSize, clip, blitter);
688 SkScan::FrameRect(devRect, strokeSize, clip, blitter);
693 SkScan::AntiHairRect(devRect, clip, blitter);
695 SkScan::HairRect(devRect, clip, blitter);
996 // clipped to the actual device and further limited by the clip bounds
1053 static bool clipped_out(const SkMatrix& matrix, const SkRasterClip& clip,
1057 return clipped_out(matrix, clip, r);
1060 static bool clipHandlesSprite(const SkRasterClip& clip, int x, int y, const SkPixmap& pmap) {
1061 return clip.isBW() || clip.quickContains(SkIRect::MakeXYWH(x, y, pmap.width(), pmap.height()));
1226 // (possibly) trim the bounds to reflect the clip
1231 // clip, and bring down the renderer (at least on finite RAM machines
1252 SkRasterClip clip;
1256 clip.setRect(SkIRect::MakeWH(mask.fBounds.width(), mask.fBounds.height()));
1261 draw.fRC = &clip;