Lines Matching refs:fPoints
324 fPoints.reset(kNumPoints); in createData()
326 fPoints[i].set(fRandom.nextRangeScalar(bounds->fLeft, bounds->fRight), in createData()
344 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
347 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
350 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
351 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]); in makePath()
355 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
356 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
361 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
362 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
363 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]); in makePath()
379 fPoints.reset(0); in finishedMakingPaths()
391 SkAutoTArray<SkPoint> fPoints; member in RandomPathBench