Home | History | Annotate | Download | only in pathops

Lines Matching refs:nextSpan

979     int oStart = other->nextSpan(oIndex, -1) + 1;
992 int oEnd = other->nextSpan(oIndex, 1);
1777 end = nextSpan(start, 1);
2349 const SkOpSpan* nextSpan = &otherSpan;
2351 ++nextSpan;
2352 } while (nextSpan->fSmall);
2353 missing.fSegment->addTCoincident(missing.fPt, nextSpan->fPt, nextSpan->fT,
2500 SkOpSpan* nextSpan = thisSpan + 1;
2502 double nextT = nextSpan->fT;
2507 SkASSERT(thisSpan->fPt == nextSpan->fPt);
2509 SkOpSegment* nextOther = nextSpan->fOther;
2517 int nIndex = nextSpan->fOtherIndex;
2529 double nMidT = (nextSpan->fOtherT + nSpan.fT) / 2;
2545 missing.fOtherT = nextSpan->fOtherT;
3080 if (span(firstT).fDone || (end = nextSpan(firstT, step)) == -1) {
3082 end = nextSpan(firstT, step);
3904 int SkOpSegment::nextSpan(int from, int step) const {
3920 // that all callers to nextSpan should use this instead.