Lines Matching refs:SkPath
12 static SkPath build_squircle(SkPath::Verb verb, const SkRect& rect, SkPathDirection dir) {
13 SkPath path;
16 case SkPath::kLine_Verb:
20 case SkPath::kQuad_Verb:
27 case SkPath::kConic_Verb:
31 case SkPath::kCubic_Verb: {
46 SkPath temp;
54 SkPath test, result;
111 SkPath copy = test;
133 SkPath original = test;
161 for (auto curveA : { SkPath::kLine_Verb, SkPath::kQuad_Verb,
162 SkPath::kConic_Verb, SkPath::kCubic_Verb } ) {
163 SkPath pathA = build_squircle(curveA, rectA, dirA);
164 for (auto curveB : { SkPath::kLine_Verb, SkPath::kQuad_Verb,
165 SkPath::kConic_Verb, SkPath::kCubic_Verb } ) {
166 test = aFirst ? pathA : SkPath();