Lines Matching refs:devPath
815 void SkDraw::drawDevPath(const SkPath& devPath, const SkPaint& paint, bool drawCoverage, in drawDevPath() argument
817 if (SkPathPriv::TooBigForMath(devPath)) { in drawDevPath()
832 ->filterPath(devPath, fMatrixProvider->localToDevice(), *fRC, blitter, style)) { in drawDevPath()
872 proc(devPath, *fRC, blitter); in drawDevPath()
1251 static void draw_into_mask(const SkMask& mask, const SkPath& devPath, in draw_into_mask() argument
1280 draw.drawPath(devPath, paint); in draw_into_mask()
1283 bool SkDraw::DrawToMask(const SkPath& devPath, const SkIRect& clipBounds, in DrawToMask() argument
1287 if (devPath.isEmpty()) { in DrawToMask()
1296 SkRect pathBounds = devPath.isInverseFillType() ? kInverseBounds in DrawToMask()
1297 : devPath.getBounds(); in DrawToMask()
1315 draw_into_mask(*mask, devPath, style); in DrawToMask()