Home | History | Annotate | Download | only in core

Lines Matching refs:SkPath

9 #include "SkPath.h"
52 SkPath::Verb verb;
54 while ((verb = clipper->next(pts)) != SkPath::kDone_Verb) {
56 case SkPath::kLine_Verb:
59 case SkPath::kQuad_Verb:
62 case SkPath::kCubic_Verb:
80 int SkEdgeBuilder::build(const SkPath& path, const SkIRect* iclip,
86 SkPath::Iter iter(path, true);
88 SkPath::Verb verb;
95 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
97 case SkPath::kMove_Verb:
98 case SkPath::kClose_Verb:
102 case SkPath::kLine_Verb: {
110 case SkPath::kQuad_Verb:
115 case SkPath::kCubic_Verb:
126 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
128 case SkPath::kMove_Verb:
129 case SkPath::kClose_Verb:
133 case SkPath::kLine_Verb:
136 case SkPath::kQuad_Verb: {
144 case SkPath::kCubic_Verb: {