Home
last modified time | relevance | path

Searched refs:SkClassifyCubic (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/tests/
DGeometryTest.cpp291 SkCubicType actualType = SkClassifyCubic(bezierPoints.data()); in check_cubic_type()
579 REPORTER_ASSERT(reporter, SkClassifyCubic(serp.data()) == SkCubicType::kSerpentine); in test_chop_at_midtangent()
586 REPORTER_ASSERT(reporter, SkClassifyCubic(loop.data()) == SkCubicType::kLoop); in test_chop_at_midtangent()
590 REPORTER_ASSERT(reporter, SkClassifyCubic(line.data()) == SkCubicType::kLineOrPoint); in test_chop_at_midtangent()
594 REPORTER_ASSERT(reporter, SkClassifyCubic(cusp.data()) == SkCubicType::kLocalCusp); in test_chop_at_midtangent()
605 REPORTER_ASSERT(reporter, SkClassifyCubic(kExactQuad) == SkCubicType::kQuadratic); in test_chop_at_midtangent()
609 REPORTER_ASSERT(reporter, SkClassifyCubic(kExactCuspAtInf) == SkCubicType::kCuspAtInfinity); in test_chop_at_midtangent()
DPathOpsCubicIntersectionTest.cpp649 SkCubicType cubicType = SkClassifyCubic(c); in selfOneOff()
/third_party/skia/samplecode/
DSampleStrokeVerb.cpp82 caption.appendf(" (%s)", SkCubicTypeName(SkClassifyCubic(fPoints))); in onDrawContent()
/third_party/skia/src/core/
DSkGeometry.h287 SkCubicType SkClassifyCubic(const SkPoint p[4], double t[2] = nullptr, double s[2] = nullptr,
DSkGeometry.cpp795 SkCubicType SkClassifyCubic(const SkPoint P[4], double t[2], double s[2], double d[4]) { in SkClassifyCubic() function
/third_party/skia/src/pathops/
DSkPathOpsCubic.cpp252 SkCubicType cubicType = SkClassifyCubic(pointsPtr, tt, ss); in ComplexBreak()