Home | History | Annotate | Download | only in chromium

Lines Matching refs:skPath

48 #include "SkPath.h"
625 const SkPath* skPath = path.platformPath();
627 SkPath::Iter iter(*skPath, true);
628 SkPath::Verb verb;
629 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
631 case SkPath::kMove_Verb:
634 case SkPath::kLine_Verb:
637 case SkPath::kQuad_Verb:
640 case SkPath::kCubic_Verb:
643 case SkPath::kClose_Verb:
646 case SkPath::kDone_Verb: