HomeSort by relevance Sort by last modified time
    Searched full:pointsleft (Results 1 - 3 of 3) sorted by null

  /external/skia/src/gpu/
GrPathUtils.cpp 76 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);
    [all...]
GrPathUtils.h 39 uint32_t pointsLeft);
49 uint32_t pointsLeft);
GrTessellator.cpp 670 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);
744 pointsLeft, alloc);
    [all...]

Completed in 93 milliseconds