Lines Matching refs:step
20 SkPoint* step) { in ComputeStep() argument
23 *step = b - a; in ComputeStep()
25 *step *= SK_ScalarHalf; in ComputeStep()
28 *step *= radius / dist; in ComputeStep()
45 SkVector firstStep, step; in filterPath() local
49 step.set(0, 0); in filterPath()
71 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step); in filterPath()
74 dst->moveTo(moveTo + step); in filterPath()
77 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX, in filterPath()
78 pts[0].fY + step.fY); in filterPath()
81 dst->lineTo(pts[1].fX - step.fX, pts[1].fY - step.fY); in filterPath()
134 firstStep = step; in filterPath()