HomeSort by relevance Sort by last modified time
    Searched defs:cubicType (Results 1 - 3 of 3) sorted by null

  /external/skia/src/pathops/
SkOpEdgeBuilder.cpp 205 SkDCubic::CubicType cubicType;
206 if (SkDCubic::ComplexBreak(pointsPtr, &loopT, &cubicType)) {
224 fCurrentContour->addCurve(v1, curve1, fAllocator)->setCubicType(cubicType);
225 fCurrentContour->addCurve(v2, curve2, fAllocator)->setCubicType(cubicType);
SkPathOpsCubic.cpp 232 bool SkDCubic::ComplexBreak(const SkPoint pointsPtr[4], SkScalar* t, CubicType* resultType) {
234 SkCubicType cubicType = SkClassifyCubic(pointsPtr, d);
235 if (cubicType == kLoop_SkCubicType) {
252 } else if (kSerpentine_SkCubicType == cubicType || kCusp_SkCubicType == cubicType) {
  /external/skia/tests/
PathOpsCubicIntersectionTest.cpp 627 SkCubicType cubicType = SkClassifyCubic(c, d);
628 SkDCubic::CubicType dType;
629 if (SkDCubic::ComplexBreak(c, &loopT, &dType) && cubicType == SkCubicType::kLoop_SkCubicType) {

Completed in 75 milliseconds