Lines Matching refs:SkPath
725 void PathTessellator::tessellatePath(const SkPath &path, const SkPaint* paint, in tessellatePath()
813 SkPath path; in tessellatePoints()
904 bool PathTessellator::approximatePathOutlineVertices(const SkPath& path, float thresholdSquared, in approximatePathOutlineVertices()
916 bool PathTessellator::approximatePathOutlineVertices(const SkPath& path, bool forceClose, in approximatePathOutlineVertices()
923 SkPath::Iter iter(path, forceClose); in approximatePathOutlineVertices()
925 SkPath::Verb v; in approximatePathOutlineVertices()
926 while (SkPath::kDone_Verb != (v = iter.next(pts))) { in approximatePathOutlineVertices()
928 case SkPath::kMove_Verb: in approximatePathOutlineVertices()
932 case SkPath::kClose_Verb: in approximatePathOutlineVertices()
935 case SkPath::kLine_Verb: in approximatePathOutlineVertices()
939 case SkPath::kQuad_Verb: in approximatePathOutlineVertices()
947 case SkPath::kCubic_Verb: in approximatePathOutlineVertices()