Home
last modified time | relevance | path

Searched refs:horizontalIntersect (Results 1 – 8 of 8) 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()
448 int SkDQuad::horizontalIntersect(double yIntercept, double roots[2]) const { in horizontalIntersect() function in SkDQuad
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
DSkPathOpsQuad.h70 int horizontalIntersect(double yIntercept, double roots[2]) const;
DSkPathOpsCubic.h94 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/
DSkGlyphCache.cpp296 : quad.horizontalIntersect(axis, roots); in AddQuad()
309 : cubic.horizontalIntersect(axis, roots); in AddCubic()
DSkGeometry.cpp886 return cubic_dchop_at_intercept(src, y, dst, &SkDCubic::horizontalIntersect); in SkChopMonoCubicAtY()