Searched refs:forceClosed (Results 1 - 5 of 5) sorted by relevance
/third_party/skia/src/core/ |
H A D | SkPathMeasure.cpp | 13 SkPathMeasure::SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale) in SkPathMeasure() argument 14 : fIter(path, forceClosed, resScale) in SkPathMeasure() 21 void SkPathMeasure::setPath(const SkPath* path, bool forceClosed) { in setPath() argument 22 fIter.reset(path ? *path : SkPath(), forceClosed); in setPath()
|
H A D | SkContourMeasure.cpp | 177 Impl(const SkPath& path, bool forceClosed, SkScalar resScale) in Impl() argument 181 , fForceClosed(forceClosed) {} in Impl() 477 SkContourMeasureIter::SkContourMeasureIter(const SkPath& path, bool forceClosed, 479 this->reset(path, forceClosed, resScale); 486 void SkContourMeasureIter::reset(const SkPath& path, bool forceClosed, SkScalar resScale) { 488 fImpl = std::make_unique<Impl>(path, forceClosed, resScale);
|
/third_party/skia/include/core/ |
H A D | SkPathMeasure.h | 24 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 30 void setPath(const SkPath*, bool forceClosed);
|
H A D | SkContourMeasure.h | 102 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 110 void reset(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
|
/third_party/skia/tests/ |
H A D | PathMeasureTest.cpp | 276 for (bool forceClosed : {false, true}) { in test_MLM_contours() 277 SkContourMeasureIter fact(path, forceClosed); in test_MLM_contours()
|
Completed in 3 milliseconds