Lines Matching refs:fCurrPoint
337 fCurrPoint = 0;
346 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
349 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
352 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
353 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]);
354 fCurrPoint += 2;
357 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
358 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
360 fCurrPoint += 2;
363 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
364 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
365 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]);
366 fCurrPoint += 3;
396 int fCurrPoint;