Searched defs:coinRec (Results 1 - 2 of 2) sorted by relevance

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

Completed in 79 milliseconds