Lines Matching refs:path
221 int SkEdgeBuilder::buildPoly(const SkPath& path, const SkIRect* iclip, bool canCullToTheRight) {
222 size_t maxEdgeCount = path.countPoints();
241 SkPathEdgeIter iter(path);
289 int SkEdgeBuilder::build(const SkPath& path, const SkIRect* iclip, bool canCullToTheRight) {
294 SkPathEdgeIter iter(path);
302 SkEdgeClipper::ClipPath(path, clip, canCullToTheRight,
363 int SkEdgeBuilder::buildEdges(const SkPath& path,
366 const bool canCullToTheRight = !path.isConvex();
370 const int count = SkPath::kLine_SegmentMask == path.getSegmentMasks()
371 ? this->buildPoly(path, shiftedClip, canCullToTheRight)
372 : this->build (path, shiftedClip, canCullToTheRight);