Searched refs:verticalIntersect (Results 1 – 8 of 8) sorted by relevance
/external/skia/src/pathops/ |
D | SkDQuadLineIntersection.cpp | 243 int verticalIntersect(double axisIntercept, double roots[2]) { in verticalIntersect() function in LineQuadraticIntersections 253 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() function in LineQuadraticIntersections 259 int roots = verticalIntersect(axisIntercept, rootVals); in verticalIntersect() 418 return q.verticalIntersect(x, top, bottom, flipped); in vertical() 443 return q.verticalIntersect(x, roots); in VerticalIntercept() 452 int SkDQuad::verticalIntersect(double xIntercept, double roots[2]) const { in verticalIntersect() function in SkDQuad
|
D | SkDConicLineIntersection.cpp | 139 int verticalIntersect(double axisIntercept, double roots[2]) { in verticalIntersect() function in LineConicIntersections 144 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() function in LineConicIntersections 150 int count = this->verticalIntersect(axisIntercept, roots); in verticalIntersect() 337 return c.verticalIntersect(x, top, bottom, flipped); in vertical() 362 return c.verticalIntersect(x, roots); in VerticalIntercept()
|
D | SkDCubicLineIntersection.cpp | 245 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() function in LineCubicIntersections 411 return c.verticalIntersect(x, top, bottom, flipped); in vertical() 435 int SkDCubic::verticalIntersect(double xIntercept, double roots[3]) const { in verticalIntersect() function in SkDCubic
|
D | SkPathOpsQuad.h | 101 int verticalIntersect(double xIntercept, double roots[2]) const;
|
D | SkPathOpsCubic.h | 99 int verticalIntersect(double xIntercept, double roots[3]) const;
|
D | SkPathOpsCurve.h | 311 return cubic.set(a).verticalIntersect(x, roots); in cubic_intercept_v()
|
/external/skia/src/core/ |
D | SkGlyphCache.cpp | 295 int count = yAxis ? quad.verticalIntersect(axis, roots) in AddQuad() 308 int count = yAxis ? cubic.verticalIntersect(axis, roots) in AddCubic()
|
D | SkGeometry.cpp | 890 return cubic_dchop_at_intercept(src, x, dst, &SkDCubic::verticalIntersect); in SkChopMonoCubicAtX()
|