• Home
  • Raw
  • Download

Lines Matching refs:lh

62     SkOpAngle* lh = test;  in after()  local
63 SkOpAngle* rh = lh->fNext; in after()
64 SkASSERT(lh != rh); in after()
66 lh->fPart.fCurve = lh->fOriginalCurvePart; in after()
67 lh->fPart.fCurve.offset(lh->segment()->verb(), fPart.fCurve[0] - lh->fPart.fCurve[0]); in after()
76 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd, in after()
77 lh->fStart->t(), lh->fEnd->t(), in after()
81 SkString bugPart[3] = { lh->debugPart(), this->debugPart(), rh->debugPart() }; in after()
83 if (lh->fComputeSector && !lh->computeSector()) { in after()
96 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd, in after()
97 lh->fStart->t(), lh->fEnd->t(), in after()
102 bool ltrOverlap = (lh->fSectorMask | rh->fSectorMask) & fSectorMask; in after()
103 bool lrOverlap = lh->fSectorMask & rh->fSectorMask; in after()
107 return COMPARE_RESULT(4, (lh->fSectorEnd > rh->fSectorStart) in after()
108 ^ (fSectorStart > lh->fSectorEnd) ^ (fSectorStart > rh->fSectorStart)); in after()
110 int lrGap = (rh->fSectorStart - lh->fSectorStart + 32) & 0x1f; in after()
123 lrOrder = lh->orderable(rh); in after()
129 SkASSERT((lh->fSectorMask & fSectorMask) || (rh->fSectorMask & fSectorMask) || -1 == lrOrder); in after()
130 if (lh->fSectorMask & fSectorMask) { in after()
131 ltOrder = lh->orderable(this); in after()
133 int ltGap = (fSectorStart - lh->fSectorStart + 32) & 0x1f; in after()
143 this->alignmentSameSide(lh, &ltOrder); in after()
155 SkDEBUGCODE(bool lrOpposite = lh->oppositePlanes(rh)); in after()
156 bool ltOpposite = lh->oppositePlanes(this); in after()
166 bool lrOpposite = lh->oppositePlanes(rh); in after()
172 if (fUnorderable || lh->fUnorderable || rh->fUnorderable) { in after()
174 if (!fPart.isCurve() && !lh->fPart.isCurve() && !rh->fPart.isCurve()) { in after()
177 int ltShare = lh->fOriginalCurvePart[0] == fOriginalCurvePart[0]; in after()
178 int lrShare = lh->fOriginalCurvePart[0] == rh->fOriginalCurvePart[0]; in after()
183 int ltOOrder = lh->linesOnOriginalSide(this); in after()
189 int tlOOrder = this->linesOnOriginalSide(lh); in after()
190 int rlOOrder = rh->linesOnOriginalSide(lh); in after()
197 int lrOOrder = lh->linesOnOriginalSide(rh); in after()