Home | History | Annotate | Download | only in bench

Lines Matching defs:fPoints

242         fPoints.reset(kNumPoints);
244 fPoints[i].set(fRandom.nextRangeScalar(bounds->fLeft, bounds->fRight),
262 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
265 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
268 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
269 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]);
273 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
274 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
279 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
280 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
281 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]);
297 fPoints.reset(0);
309 SkAutoTArray<SkPoint> fPoints;