Home
last modified time | relevance | path

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

/external/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.h51 uint32_t pointsLeft);
65 uint32_t pointsLeft);
/external/skqp/src/gpu/
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);
DGrTessellator.cpp720 int pointsLeft, in generate_cubic_points() argument
724 if (pointsLeft < 2 || (d1 < tolSqd && d2 < tolSqd) || in generate_cubic_points()
739 pointsLeft >>= 1; in generate_cubic_points()
740 generate_cubic_points(p0, q[0], r[0], s, tolSqd, contour, pointsLeft, alloc); in generate_cubic_points()
741 generate_cubic_points(s, r[1], q[2], p3, tolSqd, contour, pointsLeft, alloc); in generate_cubic_points()
792 int pointsLeft = GrPathUtils::cubicPointCount(pts, tolerance); in path_to_contours() local
794 pointsLeft, alloc); in path_to_contours()
/external/skia/src/gpu/
DGrTriangulator.cpp408 int pointsLeft) const { in generateCubicPoints()
411 if (pointsLeft < 2 || (d1 < tolSqd && d2 < tolSqd) || in generateCubicPoints()
426 pointsLeft >>= 1; in generateCubicPoints()
427 this->generateCubicPoints(p0, q[0], r[0], s, tolSqd, contour, pointsLeft); in generateCubicPoints()
428 this->generateCubicPoints(s, r[1], q[2], p3, tolSqd, contour, pointsLeft); in generateCubicPoints()
491 int pointsLeft = GrPathUtils::cubicPointCount(pts, tolerance); in pathToContours() local
493 pointsLeft); in pathToContours()
DGrTriangulator.h138 SkScalar tolSqd, VertexList* contour, int pointsLeft) const;