Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkDQuadLineIntersection.cpp187 int horizontalIntersect(double axisIntercept, double roots[2]) { in horizontalIntersect() function in LineQuadraticIntersections
197 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { in horizontalIntersect() function in LineQuadraticIntersections
203 int roots = horizontalIntersect(axisIntercept, rootVals); in horizontalIntersect()
411 return q.horizontalIntersect(y, left, right, flipped); in horizontal()
438 return q.horizontalIntersect(y, roots); in HorizontalIntercept()
DSkDConicLineIntersection.cpp66 int horizontalIntersect(double axisIntercept, double roots[2]) { in horizontalIntersect() function in LineConicIntersections
71 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { in horizontalIntersect() function in LineConicIntersections
77 int count = this->horizontalIntersect(axisIntercept, roots); in horizontalIntersect()
330 return c.horizontalIntersect(y, left, right, flipped); in horizontal()
357 return c.horizontalIntersect(y, roots); in HorizontalIntercept()
DSkDCubicLineIntersection.cpp182 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { in horizontalIntersect() function in LineCubicIntersections
404 return c.horizontalIntersect(y, left, right, flipped); in horizontal()
431 int SkDCubic::horizontalIntersect(double yIntercept, double roots[3]) const { in horizontalIntersect() function in SkDCubic
DSkPathOpsCubic.h101 int horizontalIntersect(double yIntercept, double roots[3]) const;
DSkPathOpsCurve.h306 return cubic.set(a).horizontalIntersect(y, roots); in cubic_intercept_h()
/external/skia/src/core/
DSkGeometry.cpp939 return cubic_dchop_at_intercept(src, y, dst, &SkDCubic::horizontalIntersect); in SkChopMonoCubicAtY()