Lines Matching refs:outPath
84 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, in applyTrim() argument
87 *outPath = inPath; in applyTrim()
90 outPath->reset(); in applyTrim()
101 measure.getSegment(start, len, outPath, true); in applyTrim()
103 measure.getSegment(0, end, outPath, true); in applyTrim()
106 measure.getSegment(start, end, outPath, true); in applyTrim()
115 SkPath* outPath; in getUpdatedPath() local
120 outPath = tempStagingPath; in getUpdatedPath()
126 outPath = &mTrimmedSkPath; in getUpdatedPath()
128 outPath = &mSkPath; in getUpdatedPath()
135 outPath->setFillType(static_cast<SkPathFillType>(properties.getFillType())); in getUpdatedPath()
137 return *outPath; in getUpdatedPath()