Home | History | Annotate | Download | only in core

Lines Matching refs:SkPath

2 #include "SkPath.h"
45 SkPath::Verb verb;
47 while ((verb = clipper->next(pts)) != SkPath::kDone_Verb) {
49 case SkPath::kLine_Verb:
52 case SkPath::kQuad_Verb:
55 case SkPath::kCubic_Verb:
73 int SkEdgeBuilder::build(const SkPath& path, const SkIRect* iclip,
79 SkPath::Iter iter(path, true);
81 SkPath::Verb verb;
88 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
90 case SkPath::kMove_Verb:
91 case SkPath::kClose_Verb:
95 case SkPath::kLine_Verb: {
103 case SkPath::kQuad_Verb:
108 case SkPath::kCubic_Verb:
119 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
121 case SkPath::kMove_Verb:
122 case SkPath::kClose_Verb:
126 case SkPath::kLine_Verb:
129 case SkPath::kQuad_Verb: {
137 case SkPath::kCubic_Verb: {