Home
last modified time | relevance | path

Searched refs:pointsLeft (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/gpu/
DGrPathUtils.cpp76 uint32_t pointsLeft) { in generateQuadraticPoints() argument
77 if (pointsLeft < 2 || in generateQuadraticPoints()
90 pointsLeft >>= 1; in generateQuadraticPoints()
91 uint32_t a = generateQuadraticPoints(p0, q[0], r, tolSqd, points, pointsLeft); in generateQuadraticPoints()
92 uint32_t b = generateQuadraticPoints(r, q[1], p2, tolSqd, points, pointsLeft); in generateQuadraticPoints()
133 uint32_t pointsLeft) { in generateCubicPoints() argument
134 if (pointsLeft < 2 || in generateCubicPoints()
151 pointsLeft >>= 1; in generateCubicPoints()
152 uint32_t a = generateCubicPoints(p0, q[0], r[0], s, tolSqd, points, pointsLeft); in generateCubicPoints()
153 uint32_t b = generateCubicPoints(s, r[1], q[2], p3, tolSqd, points, pointsLeft); in generateCubicPoints()
DGrPathUtils.h39 uint32_t pointsLeft);
49 uint32_t pointsLeft);
DGrTessellator.cpp670 int pointsLeft, in generate_cubic_points() argument
674 if (pointsLeft < 2 || (d1 < tolSqd && d2 < tolSqd) || in generate_cubic_points()
689 pointsLeft >>= 1; in generate_cubic_points()
690 generate_cubic_points(p0, q[0], r[0], s, tolSqd, contour, pointsLeft, alloc); in generate_cubic_points()
691 generate_cubic_points(s, r[1], q[2], p3, tolSqd, contour, pointsLeft, alloc); in generate_cubic_points()
742 int pointsLeft = GrPathUtils::cubicPointCount(pts, tolerance); in path_to_contours() local
744 pointsLeft, alloc); in path_to_contours()