Lines Matching refs:path
140 bool SimplifyDebug(const SkPath& path, SkPath* result
143 SkPathFillType fillType = path.isInverseFillType() ? SkPathFillType::kInverseEvenOdd
145 if (path.isConvex()) {
146 if (result != &path) {
147 *result = path;
152 // turn path into list of segments
164 SkPathOpsDebug::DumpSimplify(path, testName);
170 SkOpEdgeBuilder builder(path, contourList, &globalState);
214 bool Simplify(const SkPath& path, SkPath* result) {
217 if (!SimplifyDebug(path, result SkDEBUGPARAMS(false) SkDEBUGPARAMS(nullptr))) {
218 SkPathOpsDebug::ReportSimplifyFail(path);
221 SkPathOpsDebug::VerifySimplify(path, *result);
225 return SimplifyDebug(path, result SkDEBUGPARAMS(true) SkDEBUGPARAMS(nullptr));