Home
last modified time | relevance | path

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

/external/skia/gm/
Dstrokefill.cpp72 SkASSERT(path2.cheapIsDirection(SkPath::kCCW_Direction)); in onDraw()
77 SkASSERT(path2.cheapIsDirection(SkPath::kCW_Direction)); in onDraw()
103 SkASSERT(path4.cheapIsDirection(SkPath::kCCW_Direction)); in onDraw()
112 SkASSERT(path4.cheapIsDirection(SkPath::kCW_Direction)); in onDraw()
/external/skia/tests/
DPathTest.cpp831 REPORTER_ASSERT(reporter, !path.cheapIsDirection(SkPath::kCW_Direction)); in test_direction()
832 REPORTER_ASSERT(reporter, !path.cheapIsDirection(SkPath::kCCW_Direction)); in test_direction()
833 REPORTER_ASSERT(reporter, path.cheapIsDirection(SkPath::kUnknown_Direction)); in test_direction()
1291 REPORTER_ASSERT(reporter, path.cheapIsDirection(SkPath::kCCW_Direction)); in test_convexity()
1296 REPORTER_ASSERT(reporter, path.cheapIsDirection(SkPath::kCW_Direction)); in test_convexity()
2236 REPORTER_ASSERT(reporter, p1.cheapIsDirection(SkPath::kCW_Direction)); in test_transform()
2248 REPORTER_ASSERT(reporter, p1.cheapIsDirection(SkPath::kCCW_Direction)); in test_transform()
2258 REPORTER_ASSERT(reporter, p1.cheapIsDirection(SkPath::kUnknown_Direction)); in test_transform()
2782 REPORTER_ASSERT(reporter, path.cheapIsDirection(expectedDir)); in check_for_circle()
3059 REPORTER_ASSERT(reporter, path->cheapIsDirection(dir)); in test_rrect_is_convex()
[all …]
/external/skia/include/core/
DSkPath.h561 bool cheapIsDirection(Direction dir) const { in cheapIsDirection() function
/external/skia/src/core/
DSkStroke.cpp1634 if (src.cheapIsDirection(SkPath::kCCW_Direction)) { in strokePath()