Searched defs:oppPrev (Results 1 - 5 of 5) sorted by relevance

/external/skia/src/pathops/
H A DSkAddIntersections.cpp524 SkOpPtT* oppPrev = testTAt->oppPrev(nextTAt); // Returns nullptr if pair local
525 if (oppPrev) { // already share a pt-t loop.
527 testTAt->addOpp(nextTAt, oppPrev);
H A DSkOpSpan.cpp154 SkOpPtT* oppPrev = this->ptT()->oppPrev(opp->ptT()); local
155 if (!oppPrev) {
159 this->ptT()->addOpp(opp->ptT(), oppPrev);
H A DSkOpSpan.h34 void addOpp(SkOpPtT* opp, SkOpPtT* oppPrev) { argument
38 SkASSERT(oppPrev != oldNext);
39 oppPrev->fNext = oldNext;
54 void debugAddOpp(const SkOpPtT* opp, const SkOpPtT* oppPrev) const;
104 SkOpPtT* oppPrev(const SkOpPtT* opp) const { function in class:SkOpPtT
106 SkOpPtT* oppPrev = opp->fNext; local
107 if (oppPrev == this) {
110 while (oppPrev->fNext != opp) {
111 oppPrev = oppPrev
[all...]
H A DSkOpSegment.cpp235 SkOpPtT* oppPrev = test->ptT()->oppPrev(newPtT); local
236 if (oppPrev) {
240 writableTest->ptT()->addOpp(newPtT, oppPrev);
1236 SkOpSpanBase* oppPrev = oppSpan; local
1238 while ((oppPrev = oppPrev->prev())) {
1239 if (!roughly_equal(oppPrev->t(), oppSpan->t())) {
1242 if (oppPrev->spanAddsCount() == addCount) {
1245 if (oppPrev
[all...]
H A DSkPathOpsDebug.cpp990 const SkOpSpanBase* oppPrev = oppSpan; local
992 while ((oppPrev = oppPrev->prev())) {
993 if (!roughly_equal(oppPrev->t(), oppSpan->t())) {
996 if (oppPrev->spanAddsCount() == addCount) {
999 if (oppPrev->deleted()) {
1002 oppFirst = oppPrev;
2412 const SkOpPtT* oppPrev = this->ptT()->oppPrev(opp->ptT()); local
2413 if (!oppPrev) {
[all...]

Completed in 800 milliseconds