HomeSort by relevance Sort by last modified time
    Searched refs:ptT (Results 1 - 10 of 10) sorted by null

  /external/skia/src/pathops/
SkOpSpan.cpp 13 return this->span()->ptT() != this;
28 const SkOpPtT* ptT = this;
29 const SkOpPtT* stopPtT = ptT;
30 while ((ptT = ptT->next()) != stopPtT) {
31 if (ptT == check) {
40 SkOpPtT* ptT = this;
41 const SkOpPtT* stopPtT = ptT;
42 while ((ptT = ptT->next()) != stopPtT)
    [all...]
SkPathOpsDebug.cpp 499 if ((testT = test->ptT()->fT) >= t) {
621 const SkOpPtT* ptT = spanBase->ptT(), * spanStopPtT = ptT;
622 SkASSERT(ptT->span() == spanBase);
623 while ((ptT = ptT->next()) != spanStopPtT) {
624 if (ptT->deleted()) {
627 SkOpSegment* opp = ptT->span()->segment();
655 priorStopPtT = priorPtT = priorTest->ptT();
    [all...]
SkOpSegment.cpp 99 SkOpPtT* oPtT = start->ptT()->next();
233 SkOpPtT* ptT = segment->addT(i[0][0], SkOpSegment::kAllowAlias, allocator);
234 ptT->fPt = newPt;
235 endPtT.addOpp(ptT);
306 if ((testT = test->ptT()->fT) >= t) {
315 result = existing->ptT();
328 SkOpPtT* result = span->ptT();
376 return span->ptT();
    [all...]
SkOpSegment.h 52 this->addAlignIntersection(*fHead.ptT(), fOriginal[0], contourList, allocator);
53 this->addAlignIntersection(*fTail.ptT(), fOriginal[1], contourList, allocator);
139 this->debugAddAlignIntersection(id, glitches, *fHead.ptT(), fOriginal[0], contourList);
140 this->debugAddAlignIntersection(id, glitches, *fTail.ptT(), fOriginal[1], contourList);
228 SkDEBUGCODE(result->ptT()->fT = 0);
371 bool testForCoincidence(const SkOpPtT* priorPtT, const SkOpPtT* ptT, const SkOpSpanBase* prior,
SkOpCoincidence.cpp 94 if (!test->ptT()->contains(oTest->ptT())) {
117 test->ptT()->addOpp(newPt);
125 oTest->ptT()->addOpp(newPt);
519 coin->fCoinPtTStart = prev->ptT();
528 coin->fCoinPtTEnd = next->ptT();
SkOpSpan.h 264 const SkOpPtT* ptT() const {
268 SkOpPtT* ptT() {
SkPathOpsCommon.cpp 82 *startPtr = span->ptT()->next()->span();
SkPathOpsOp.cpp 19 *startPtr = span->ptT()->prev()->span();
  /external/skia/tests/
PathOpsDebug.cpp 258 const SkOpAngle* SkPathOpsDebug::DebugPtTAngle(const SkOpPtT* ptT, int id) {
259 return ptT->debugAngle(id);
262 SkOpContour* SkPathOpsDebug::DebugPtTContour(SkOpPtT* ptT, int id) {
263 return ptT->debugContour(id);
266 const SkOpPtT* SkPathOpsDebug::DebugPtTPtT(const SkOpPtT* ptT, int id) {
267 return ptT->debugPtT(id);
270 const SkOpSegment* SkPathOpsDebug::DebugPtTSegment(const SkOpPtT* ptT, int id) {
271 return ptT->debugSegment(id);
274 const SkOpSpanBase* SkPathOpsDebug::DebugPtTSpan(const SkOpPtT* ptT, int id) {
275 return ptT->debugSpan(id)
    [all...]
PathOpsAngleTest.cpp 476 SkOpPtT* startPtT = startT == 0 ? fHead.ptT() : startT == 1 ? fTail.ptT()
478 SkOpPtT* endPtT = endT == 0 ? fHead.ptT() : endT == 1 ? fTail.ptT()
482 while (startSpan->ptT() != startPtT) {
486 while (endSpan->ptT() != endPtT) {

Completed in 636 milliseconds