Searched defs:nextPt (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkStroke.cpp437 const SkPoint* nextPt = &pt1; local
439 nextPt = &pt2;
440 this->preJoinTo(*nextPt, &normalAB, &unitAB, false);
H A DSkPath.cpp252 int nextPt = -1; local
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];
/external/skia/src/core/
H A DSkStroke.cpp436 const SkPoint* nextPt = &pt1; local
438 nextPt = &pt2;
439 this->preJoinTo(*nextPt, &normalAB, &unitAB, false);
H A DSkPath.cpp252 int nextPt = -1; local
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];
/external/skia/src/pathops/
H A DSkOpSegment.cpp226 const SkPoint* nextPt; local
228 nextPt = &fTs[++tIndex].fPt;
229 SkASSERT(fTs[tIndex].fT < 1 || startPt != *nextPt);
230 } while (startPt == *nextPt);
331 SkPoint nextPt = startPt; local
336 } while (nextPt == *workPt);
340 } while (nextPt == *oWorkPt);
341 nextPt = *workPt;
348 addTPair(tStart, other, oStart, false, nextPt);
350 } while (endPt != nextPt);
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpSegment.cpp226 const SkPoint* nextPt; local
228 nextPt = &fTs[++tIndex].fPt;
229 SkASSERT(fTs[tIndex].fT < 1 || startPt != *nextPt);
230 } while (startPt == *nextPt);
332 SkPoint nextPt = startPt; local
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 590 milliseconds