Lines Matching refs:srcTol
18 static float tolerance_to_wangs_precision(float srcTol) {
20 SkASSERT(srcTol >= kMinCurveTol);
24 // of the true curve, so precision = 1/srcTol
25 return 1.f / srcTol;
52 SkScalar srcTol = 0;
56 srcTol = std::max(pathBounds.width(), pathBounds.height());
58 srcTol = devTol / stretch;
60 if (srcTol < kMinCurveTol) {
61 srcTol = kMinCurveTol;
63 return srcTol;