HomeSort by relevance Sort by last modified time
    Searched defs:fCurrPoint (Results 1 - 3 of 3) sorted by null

  /external/skia/src/core/
SkEdgeClipper.h 30 SkPoint* fCurrPoint;
SkQuadClipper.h 45 SkPoint* fCurrPoint;
  /external/skia/bench/
PathBench.cpp 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)]
    [all...]

Completed in 168 milliseconds