Lines Matching refs:toleranceSqd
475 void GrTriangulator::appendQuadraticToContour(const SkPoint pts[3], SkScalar toleranceSqd,
488 if (quad_error_at(pts, t, u) < toleranceSqd) {
527 SkScalar toleranceSqd = tolerance * tolerance;
546 if (toleranceSqd == 0) {
551 const SkPoint* quadPts = converter.computeQuads(pts, weight, toleranceSqd);
553 this->appendQuadraticToContour(quadPts, toleranceSqd, contour);
570 if (toleranceSqd == 0) {
574 this->appendQuadraticToContour(pts, toleranceSqd, contour);
579 if (toleranceSqd == 0) {
584 this->generateCubicPoints(pts[0], pts[1], pts[2], pts[3], toleranceSqd, contour,