Home
last modified time | relevance | path

Searched refs:spanS (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/pathops/
DSkOpSegment.cpp1404 SkOpSpanBase* spanS = &fHead; in moveNearby() local
1406 SkOpSpanBase* test = spanS->upCast()->next(); in moveNearby()
1408 if (spanS->contains(test)) { in moveNearby()
1410 test->upCast()->detach(spanS->ptT()); in moveNearby()
1412 } else if (spanS != &fHead) { in moveNearby()
1413 spanS->upCast()->detach(test->ptT()); in moveNearby()
1414 spanS = test; in moveNearby()
1419 SkOpPtT* startBase = spanS->ptT(); in moveNearby()
1432 if (spanS == &fHead) { in moveNearby()
1436 this->fTail.merge(spanS->upCast()); in moveNearby()
[all …]
DSkPathOpsDebug.cpp799 const SkOpSpanBase* spanS = &fHead; in debugMoveNearby() local
801 const SkOpSpanBase* test = spanS->upCast()->next(); in debugMoveNearby()
803 if (spanS->contains(test)) { in debugMoveNearby()
805 glitches->record(kUndetachedSpan_Glitch, id, test, spanS); in debugMoveNearby()
806 } else if (spanS != &fHead) { in debugMoveNearby()
807 glitches->record(kUndetachedSpan_Glitch, id, spanS, test); in debugMoveNearby()
811 const SkOpPtT* startBase = spanS->ptT(); in debugMoveNearby()
824 if (spanS == &fHead) { in debugMoveNearby()
825 glitches->record(kCollapsedSpan_Glitch, id, spanS); in debugMoveNearby()
827 glitches->record(kUnmergedSpan_Glitch, id, &this->fTail, spanS); in debugMoveNearby()
[all …]