Searched refs:fCurrPoint (Results 1 - 4 of 4) sorted by relevance

/external/skia/src/core/
H A DSkEdgeClipper.cpp200 fCurrPoint = fPoints;
215 SkASSERT(fCurrPoint - fPoints <= kMaxPoints);
221 fCurrPoint = fPoints;
348 fCurrPoint = fPoints;
363 SkASSERT(fCurrPoint - fPoints <= kMaxPoints);
369 fCurrPoint = fPoints;
383 fCurrPoint[0].set(x, y0);
384 fCurrPoint[1].set(x, y1);
385 fCurrPoint += 2;
392 fCurrPoint[
[all...]
H A DSkEdgeClipper.h30 SkPoint* fCurrPoint; member in class:SkEdgeClipper
H A DSkQuadClipper.h45 SkPoint* fCurrPoint; member in class:SkQuadClipper2
/external/skia/bench/
H A DPathBench.cpp253 fCurrPoint = 0;
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)]);
270 fCurrPoint += 2;
273 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
274 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
276 fCurrPoint += 2;
279 path->cubicTo(fPoints[(fCurrPoint
312 int fCurrPoint; member in class:RandomPathBench
[all...]

Completed in 111 milliseconds