Lines Matching refs:fInvResScale
192 SkScalar fInvResScale; member in SkPathStroker
415 fInvResScale = SkScalarInvert(resScale * 4); in SkPathStroker()
416 fInvResScaleSquared = fInvResScale * fInvResScale; in SkPathStroker()
467 …eenyLine = SkPointPriv::EqualsWithinTolerance(fPrevPt, currPt, SK_ScalarNearlyZero * fInvResScale); in lineTo()
986 if (pt.fX + fInvResScale < xMin) { in ptInQuadBounds()
990 if (pt.fX - fInvResScale > xMax) { in ptInQuadBounds()
994 if (pt.fY + fInvResScale < yMin) { in ptInQuadBounds()
998 if (pt.fY - fInvResScale > yMax) { in ptInQuadBounds()
1029 if (points_within_dist(ray[0], strokeMid, fInvResScale)) { // if the difference is small in strokeCloseEnough()
1039 ray[0].fX, ray[0].fY, strokeMid.fX, strokeMid.fY, fInvResScale); in strokeCloseEnough()
1057 SkScalar error = fInvResScale * (SK_Scalar1 - SkScalarAbs(roots[0] - 0.5f) * 2); in strokeCloseEnough()
1152 fInvResScale)) && cubicMidOnLine(cubic, quadPts)) { in cubicStroke()