Home | History | Annotate | Download | only in effects

Lines Matching refs:SkPath

21 bool Sk1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
40 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance,
79 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
119 static void morphpath(SkPath* dst, const SkPath& src, SkPathMeasure& meas, SkScalar dist)
121 SkPath::Iter iter(src, false);
123 SkPath::Verb verb;
125 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb)
128 case SkPath::kMove_Verb:
132 case SkPath::kLine_Verb:
137 case SkPath::kQuad_Verb:
141 case SkPath::kCubic_Verb:
145 case SkPath::kClose_Verb:
180 SkScalar SkPath1DPathEffect::next(SkPath* dst, SkScalar distance, SkPathMeasure& meas)