Lines Matching refs:outPath
87 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, in applyTrim() argument
90 *outPath = inPath; in applyTrim()
93 outPath->reset(); in applyTrim()
104 measure.getSegment(start, len, outPath, true); in applyTrim()
106 measure.getSegment(0, end, outPath, true); in applyTrim()
109 measure.getSegment(start, end, outPath, true); in applyTrim()
118 SkPath* outPath; in getUpdatedPath() local
123 outPath = tempStagingPath; in getUpdatedPath()
129 outPath = &mTrimmedSkPath; in getUpdatedPath()
131 outPath = &mSkPath; in getUpdatedPath()
138 outPath->setFillType(static_cast<SkPathFillType>(properties.getFillType())); in getUpdatedPath()
140 return *outPath; in getUpdatedPath()