Home
last modified time | relevance | path

Searched refs:pointsLeft (Results 1 - 4 of 4) sorted by relevance

/third_party/skia/src/gpu/geometry/
H A DGrPathUtils.cpp76 uint32_t pointsLeft) { in generateQuadraticPoints()
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()
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()
71 generateQuadraticPoints(const SkPoint& p0, const SkPoint& p1, const SkPoint& p2, SkScalar tolSqd, SkPoint** points, uint32_t pointsLeft) generateQuadraticPoints() argument
101 generateCubicPoints(const SkPoint& p0, const SkPoint& p1, const SkPoint& p2, const SkPoint& p3, SkScalar tolSqd, SkPoint** points, uint32_t pointsLeft) generateCubicPoints() argument
[all...]
H A DGrPathUtils.h46 // Returns the number of points actually written to 'points', will be <= to 'pointsLeft'
52 uint32_t pointsLeft);
59 // Returns the number of points actually written to 'points', will be <= to 'pointsLeft'
66 uint32_t pointsLeft);
H A 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()
H A DGrTriangulator.h141 SkScalar tolSqd, VertexList* contour, int pointsLeft) const;

Completed in 6 milliseconds