Home
last modified time | relevance | path

Searched refs:ptT (Results 1 – 10 of 10) sorted by relevance

/external/skia/src/pathops/
DSkOpSpan.cpp13 return this->span()->ptT() != this; in alias()
28 const SkOpPtT* ptT = this; in contains() local
29 const SkOpPtT* stopPtT = ptT; in contains()
30 while ((ptT = ptT->next()) != stopPtT) { in contains()
31 if (ptT == check) { in contains()
40 SkOpPtT* ptT = this; in contains() local
41 const SkOpPtT* stopPtT = ptT; in contains()
42 while ((ptT = ptT->next()) != stopPtT) { in contains()
43 if (ptT->segment() == check) { in contains()
44 return ptT; in contains()
[all …]
DSkPathOpsDebug.cpp499 if ((testT = test->ptT()->fT) >= t) { in debugAddMissing()
621 const SkOpPtT* ptT = spanBase->ptT(), * spanStopPtT = ptT; in debugMissingCoincidence() local
622 SkASSERT(ptT->span() == spanBase); in debugMissingCoincidence()
623 while ((ptT = ptT->next()) != spanStopPtT) { in debugMissingCoincidence()
624 if (ptT->deleted()) { in debugMissingCoincidence()
627 SkOpSegment* opp = ptT->span()->segment(); in debugMissingCoincidence()
655 priorStopPtT = priorPtT = priorTest->ptT(); in debugMissingCoincidence()
672 const SkOpPtT* oppStart = prior->ptT(); in debugMissingCoincidence()
673 const SkOpPtT* oppEnd = spanBase->ptT(); in debugMissingCoincidence()
674 bool swapped = priorPtT->fT > ptT->fT; in debugMissingCoincidence()
[all …]
DSkOpSegment.cpp99 SkOpPtT* oPtT = start->ptT()->next(); in activeAngleOther()
233 SkOpPtT* ptT = segment->addT(i[0][0], SkOpSegment::kAllowAlias, allocator); in addAlignIntersection() local
234 ptT->fPt = newPt; in addAlignIntersection()
235 endPtT.addOpp(ptT); in addAlignIntersection()
306 if ((testT = test->ptT()->fT) >= t) { in addMissing()
315 result = existing->ptT(); in addMissing()
328 SkOpPtT* result = span->ptT(); in addT()
376 return span->ptT(); in addT()
1130 SkOpPtT* otherPtT = endSpan->ptT()->next(); in nextChase()
1179 SkOpPtT* ptT = span->ptT(), * stopPtT = ptT; in clear_visited() local
[all …]
DSkOpSegment.h52 this->addAlignIntersection(*fHead.ptT(), fOriginal[0], contourList, allocator); in addAlignIntersections()
53 this->addAlignIntersection(*fTail.ptT(), fOriginal[1], contourList, allocator); in addAlignIntersections()
139 this->debugAddAlignIntersection(id, glitches, *fHead.ptT(), fOriginal[0], contourList); in debugAddAlignIntersections()
140 this->debugAddAlignIntersection(id, glitches, *fTail.ptT(), fOriginal[1], contourList); in debugAddAlignIntersections()
228 SkDEBUGCODE(result->ptT()->fT = 0); in insert()
371 bool testForCoincidence(const SkOpPtT* priorPtT, const SkOpPtT* ptT, const SkOpSpanBase* prior,
DSkOpCoincidence.cpp94 if (!test->ptT()->contains(oTest->ptT())) { in addExpanded()
117 test->ptT()->addOpp(newPt); in addExpanded()
125 oTest->ptT()->addOpp(newPt); in addExpanded()
519 coin->fCoinPtTStart = prev->ptT(); in expand()
528 coin->fCoinPtTEnd = next->ptT(); in expand()
DSkOpSpan.h264 const SkOpPtT* ptT() const { in ptT() function
268 SkOpPtT* ptT() { in ptT() function
DSkPathOpsOp.cpp19 *startPtr = span->ptT()->prev()->span(); in findChaseOp()
DSkPathOpsCommon.cpp82 *startPtr = span->ptT()->next()->span(); in FindChase()
/external/skia/tests/
DPathOpsDebug.cpp258 const SkOpAngle* SkPathOpsDebug::DebugPtTAngle(const SkOpPtT* ptT, int id) { in DebugPtTAngle() argument
259 return ptT->debugAngle(id); in DebugPtTAngle()
262 SkOpContour* SkPathOpsDebug::DebugPtTContour(SkOpPtT* ptT, int id) { in DebugPtTContour() argument
263 return ptT->debugContour(id); in DebugPtTContour()
266 const SkOpPtT* SkPathOpsDebug::DebugPtTPtT(const SkOpPtT* ptT, int id) { in DebugPtTPtT() argument
267 return ptT->debugPtT(id); in DebugPtTPtT()
270 const SkOpSegment* SkPathOpsDebug::DebugPtTSegment(const SkOpPtT* ptT, int id) { in DebugPtTSegment() argument
271 return ptT->debugSegment(id); in DebugPtTSegment()
274 const SkOpSpanBase* SkPathOpsDebug::DebugPtTSpan(const SkOpPtT* ptT, int id) { in DebugPtTSpan() argument
275 return ptT->debugSpan(id); in DebugPtTSpan()
[all …]
DPathOpsAngleTest.cpp476 SkOpPtT* startPtT = startT == 0 ? fHead.ptT() : startT == 1 ? fTail.ptT() in debugAddAngle()
478 SkOpPtT* endPtT = endT == 0 ? fHead.ptT() : endT == 1 ? fTail.ptT() in debugAddAngle()
482 while (startSpan->ptT() != startPtT) { in debugAddAngle()
486 while (endSpan->ptT() != endPtT) { in debugAddAngle()