Home
last modified time | relevance | path

Searched refs:AddPathMode (Results 1 – 4 of 4) sorted by relevance

/external/skia/samplecode/
DSamplePathFuzz.cpp187 SkPath::AddPathMode makeAddPathMode() { in makeAddPathMode()
188 return (SkPath::AddPathMode) fRand.nextRangeU(SkPath::kAppend_AddPathMode, in makeAddPathMode()
417 SkPath::AddPathMode mode = makeAddPathMode(); in makePath()
428 SkPath::AddPathMode mode = makeAddPathMode(); in makePath()
440 SkPath::AddPathMode mode = makeAddPathMode(); in makePath()
/external/skia/include/core/
DSkPath.h806 enum AddPathMode { enum
825 AddPathMode mode = kAppend_AddPathMode);
829 void addPath(const SkPath& src, AddPathMode mode = kAppend_AddPathMode) {
840 void addPath(const SkPath& src, const SkMatrix& matrix, AddPathMode mode = kAppend_AddPathMode);
/external/skia/src/core/
DSkPath.cpp1472 void SkPath::addPath(const SkPath& path, SkScalar dx, SkScalar dy, AddPathMode mode) { in addPath()
1479 void SkPath::addPath(const SkPath& path, const SkMatrix& matrix, AddPathMode mode) { in addPath()
/external/skia/tests/
DPathTest.cpp3486 static void test_addEmptyPath(skiatest::Reporter* reporter, SkPath::AddPathMode mode) { in test_addEmptyPath()