Lines Matching refs:SkPath
723 void PathTessellator::tessellatePath(const SkPath &path, const SkPaint* paint, in tessellatePath()
813 SkPath path; in tessellatePoints()
902 bool PathTessellator::approximatePathOutlineVertices(const SkPath& path, float threshold, in approximatePathOutlineVertices()
942 bool PathTessellator::approximatePathOutlineVertices(const SkPath& path, bool forceClose, in approximatePathOutlineVertices()
948 SkPath::Iter iter(path, forceClose); in approximatePathOutlineVertices()
950 SkPath::Verb v; in approximatePathOutlineVertices()
952 while (SkPath::kDone_Verb != (v = iter.next(pts))) { in approximatePathOutlineVertices()
954 case SkPath::kMove_Verb: in approximatePathOutlineVertices()
959 case SkPath::kClose_Verb: in approximatePathOutlineVertices()
963 case SkPath::kLine_Verb: in approximatePathOutlineVertices()
968 case SkPath::kQuad_Verb: in approximatePathOutlineVertices()
978 case SkPath::kCubic_Verb: in approximatePathOutlineVertices()
990 case SkPath::kConic_Verb: { in approximatePathOutlineVertices()