Searched defs:pointsLeft (Results 1 - 2 of 2) sorted by relevance

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

Completed in 128 milliseconds