Lines Matching refs:fPoints
243 fPoints.reset(kNumPoints); in createData()
245 fPoints[i].set(fRandom.nextRangeScalar(bounds->fLeft, bounds->fRight), in createData()
263 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
266 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
269 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
270 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]); in makePath()
274 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
275 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
280 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
281 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
282 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]); in makePath()
298 fPoints.reset(0); in finishedMakingPaths()
310 SkAutoTArray<SkPoint> fPoints; member in RandomPathBench