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

  /external/chromium_org/third_party/skia/src/core/
SkStroke.cpp 437 const SkPoint* nextPt = &pt1;
439 nextPt = &pt2;
440 this->preJoinTo(*nextPt, &normalAB, &unitAB, false);
SkPath.cpp 252 int nextPt = -1;
260 nextPt = 1;
268 nextPt = 2;
273 nextPt = 3;
281 if (-1 != nextPt) {
282 if (!check_edge_against_rect(prevPt, pts[nextPt], rect, direction)) {
285 prevPt = pts[nextPt];
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpSegment.cpp 226 const SkPoint* nextPt;
228 nextPt = &fTs[++tIndex].fPt;
229 SkASSERT(fTs[tIndex].fT < 1 || startPt != *nextPt);
230 } while (startPt == *nextPt);
332 SkPoint nextPt = startPt;
337 } while (nextPt == *workPt);
341 } while (nextPt == *oWorkPt);
342 nextPt = *workPt;
349 addTPair(tStart, other, oStart, false, nextPt);
351 } while (endPt != nextPt);
    [all...]

Completed in 158 milliseconds