Home | History | Annotate | Download | only in gpu

Lines Matching refs:pointsLeft

486                                   int pointsLeft,
489 if (pointsLeft < 2 || d < tolSqd || !SkScalarIsFinite(d)) {
499 pointsLeft >>= 1;
500 prev = generate_quadratic_points(p0, q[0], r, tolSqd, prev, head, pointsLeft, alloc);
501 prev = generate_quadratic_points(r, q[1], p2, tolSqd, prev, head, pointsLeft, alloc);
512 int pointsLeft,
516 if (pointsLeft < 2 || (d1 < tolSqd && d2 < tolSqd) ||
530 pointsLeft >>= 1;
531 prev = generate_cubic_points(p0, q[0], r[0], s, tolSqd, prev, head, pointsLeft, alloc);
532 prev = generate_cubic_points(s, r[1], q[2], p3, tolSqd, prev, head, pointsLeft, alloc);
567 int pointsLeft = GrPathUtils::quadraticPointCount(quadPts, tolerance);
569 toleranceSqd, prev, &head, pointsLeft, alloc);
589 int pointsLeft = GrPathUtils::quadraticPointCount(pts, tolerance);
591 &head, pointsLeft, alloc);
596 int pointsLeft = GrPathUtils::cubicPointCount(pts, tolerance);
598 toleranceSqd, prev, &head, pointsLeft, alloc);