Home | History | Annotate | Download | only in bench

Lines Matching refs:fCurrPoint

254         fCurrPoint = 0;
263 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
266 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
269 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
270 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]);
271 fCurrPoint += 2;
274 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
275 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
277 fCurrPoint += 2;
280 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
281 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
282 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]);
283 fCurrPoint += 3;
313 int fCurrPoint;