Lines Matching refs:src
11 #include "src/core/SkReadBuffer.h"
12 #include "src/core/SkWriteBuffer.h"
13 #include "src/effects/SkTrimPE.h"
18 static size_t add_segments(const SkPath& src, SkScalar start, SkScalar stop, SkPath* dst,
22 SkPathMeasure measure(src, false);
51 bool SkTrimPE::onFilterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*,
60 SkPathMeasure meas(src, false);
72 add_segments(src, arcStart, arcStop, dst);
85 const auto contour_count = add_segments(src, arcStop, len, dst);
89 if (contour_count == 1 && src.isLastContourClosed()) {
94 add_segments(src, 0, arcStart, dst, requires_moveto);