Home | History | Annotate | Download | only in bench

Lines Matching refs:fCurrPoint

335         fCurrPoint = 0;
344 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
347 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
350 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
351 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]);
352 fCurrPoint += 2;
355 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
356 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
358 fCurrPoint += 2;
361 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
362 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
363 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]);
364 fCurrPoint += 3;
394 int fCurrPoint;