Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/geometry/
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()
107 uint32_t pointsLeft) { in generateCubicPoints() argument
108 if (pointsLeft < 2 || in generateCubicPoints()
125 pointsLeft >>= 1; in generateCubicPoints()
126 uint32_t a = generateCubicPoints(p0, q[0], r[0], s, tolSqd, points, pointsLeft); in generateCubicPoints()
127 uint32_t b = generateCubicPoints(s, r[1], q[2], p3, tolSqd, points, pointsLeft); in generateCubicPoints()
DGrPathUtils.h52 uint32_t pointsLeft);
66 uint32_t pointsLeft);
DGrTriangulator.cpp500 int pointsLeft) const { in generateCubicPoints()
503 if (pointsLeft < 2 || (d1 < tolSqd && d2 < tolSqd) || in generateCubicPoints()
518 pointsLeft >>= 1; in generateCubicPoints()
519 this->generateCubicPoints(p0, q[0], r[0], s, tolSqd, contour, pointsLeft); in generateCubicPoints()
520 this->generateCubicPoints(s, r[1], q[2], p3, tolSqd, contour, pointsLeft); in generateCubicPoints()
583 int pointsLeft = GrPathUtils::cubicPointCount(pts, tolerance); in pathToContours() local
585 pointsLeft); in pathToContours()
DGrTriangulator.h141 SkScalar tolSqd, VertexList* contour, int pointsLeft) const;
/third_party/flutter/skia/src/gpu/geometry/
DGrPathUtils.cpp84 uint32_t pointsLeft) { in generateQuadraticPoints() argument
85 if (pointsLeft < 2 || in generateQuadraticPoints()
98 pointsLeft >>= 1; in generateQuadraticPoints()
99 uint32_t a = generateQuadraticPoints(p0, q[0], r, tolSqd, points, pointsLeft); in generateQuadraticPoints()
100 uint32_t b = generateQuadraticPoints(r, q[1], p2, tolSqd, points, pointsLeft); in generateQuadraticPoints()
141 uint32_t pointsLeft) { in generateCubicPoints() argument
142 if (pointsLeft < 2 || in generateCubicPoints()
159 pointsLeft >>= 1; in generateCubicPoints()
160 uint32_t a = generateCubicPoints(p0, q[0], r[0], s, tolSqd, points, pointsLeft); in generateCubicPoints()
161 uint32_t b = generateCubicPoints(s, r[1], q[2], p3, tolSqd, points, pointsLeft); in generateCubicPoints()
DGrPathUtils.h39 uint32_t pointsLeft);
49 uint32_t pointsLeft);
/third_party/flutter/skia/src/gpu/
DGrTessellator.cpp777 int pointsLeft, in generate_cubic_points() argument
781 if (pointsLeft < 2 || (d1 < tolSqd && d2 < tolSqd) || in generate_cubic_points()
796 pointsLeft >>= 1; in generate_cubic_points()
797 generate_cubic_points(p0, q[0], r[0], s, tolSqd, contour, pointsLeft, alloc); in generate_cubic_points()
798 generate_cubic_points(s, r[1], q[2], p3, tolSqd, contour, pointsLeft, alloc); in generate_cubic_points()
849 int pointsLeft = GrPathUtils::cubicPointCount(pts, tolerance); in path_to_contours() local
851 pointsLeft, alloc); in path_to_contours()