Home
last modified time | relevance | path

Searched refs:fCoincident (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/pathops/
DSkOpSpan.h385 if (fCoincident == this) { in clearCoincident()
388 fCoincident = this; in clearCoincident()
398 while ((next = next->fCoincident) != this) { in containsCoincidence()
425 SkOpSpan* coinNext = coin->fCoincident; in insertCoincidence()
426 coin->fCoincident = this->fCoincident; in insertCoincidence()
427 this->fCoincident = coinNext; in insertCoincidence()
438 return fCoincident != this; in isCoincident()
508 SkOpSpan* fCoincident; // linked list of spans coincident with this one (may point to itself)
DSkPathOpsTSect.h32 this->fCoincident = 0xFF; in debugInit()
40 SkASSERT(!!fCoincident == fCoincident); in isCoincident()
41 return SkToBool(fCoincident); in isCoincident()
46 fCoincident = false; in init()
51 if (!fCoincident) { in markCoincident()
54 fCoincident = true; in markCoincident()
70 SkOpDebugBool fCoincident; variable
317 SkTSpan<TCurve, OppCurve>* fCoincident; variable
361 fCoincident = cPt.approximatelyEqual(fPerpPt); in setPerp()
363 if (fCoincident) { in setPerp()
[all …]
DSkOpSpan.cpp328 const SkOpSpan* next = fCoincident; in containsCoincidence()
333 } while ((next = next->fCoincident) != this); in containsCoincidence()
356 fCoincident = this; in init()
DSkPathOpsDebug.cpp1628 nextCoin = next->fCoincident; in debugCoinLoopCheck()
1629 SkASSERT(nextCoin == this || nextCoin->fCoincident != nextCoin); in debugCoinLoopCheck()
1631 const SkOpSpan* checkCoin = this->fCoincident; in debugCoinLoopCheck()
1634 innerCoin = innerCoin->fCoincident; in debugCoinLoopCheck()
/external/skia/tests/
DPathOpsTSectDebug.h12 if (!!fCoincident != fCoincident) { in dumpIsCoincidentStr()
15 return fCoincident ? '*' : 0; in dumpIsCoincidentStr()
21 fCoincident ? " coincident" : ""); in dump()
110 dumpCommon(fCoincident); in dumpCoin()
115 dumpCommonCurves(fCoincident); in dumpCoinCurves()
DPathOpsDebug.cpp1036 const SkOpSpan* coincident = fCoincident; in dumpCoin()
1046 } while ((coincident = coincident->fCoincident) != this); in dumpCoin()
1050 SkOpSpan* coin = fCoincident; in dumpSpan()