Lines Matching refs:fPoints
326 fPoints.reset(kNumPoints); in createData()
328 fPoints[i].set(fRandom.nextRangeScalar(bounds->fLeft, bounds->fRight), in createData()
346 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
349 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
352 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
353 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]); in makePath()
357 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
358 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
363 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
364 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
365 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]); in makePath()
381 fPoints.reset(0); in finishedMakingPaths()
393 SkAutoTArray<SkPoint> fPoints; member in RandomPathBench