Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkOpCoincidence.cpp14 SkCoincidentSpans* coinRec = fHead; in extend() local
15 if (coinRec) { in extend()
17 if (coinRec->fCoinPtTStart->segment() != coinPtTStart->segment()) { in extend()
20 if (coinRec->fOppPtTStart->segment() != oppPtTStart->segment()) { in extend()
23 if (coinRec->fCoinPtTStart->fT > coinPtTEnd->fT) { in extend()
26 if (coinRec->fCoinPtTEnd->fT < coinPtTStart->fT) { in extend()
29 if (coinRec->fCoinPtTStart->fT > coinPtTStart->fT) { in extend()
30 coinRec->fCoinPtTStart = coinPtTStart; in extend()
31 coinRec->fOppPtTStart = oppPtTStart; in extend()
33 if (coinRec->fCoinPtTEnd->fT < coinPtTEnd->fT) { in extend()
[all …]
DSkPathOpsPostSect.cpp343 SkCoincidentSpans* coinRec = SkOpTAllocator<SkCoincidentSpans>::Allocate(allocator); in add() local
352 coinRec->fNext = this->fHead; in add()
353 coinRec->fCoinPtTStart = coinPtTStart; in add()
354 coinRec->fCoinPtTEnd = coinPtTEnd; in add()
355 coinRec->fOppPtTStart = oppPtTStart; in add()
356 coinRec->fOppPtTEnd = oppPtTEnd; in add()
357 coinRec->fFlipped = flipped; in add()
358 this->fHead = coinRec; in add()