Home
last modified time | relevance | path

Searched refs:coincident (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/pathops/
DSkPathOpsTSect.h1818 const SkTSpan<TCurve, OppCurve>* coincident = fCoincident; in validate() local
1819 while (coincident) { in validate()
1821 coincident = coincident->fNext; in validate()
2127 SkTSpan<TCurve, OppCurve>* coincident = sect1->fCoincident; in BinarySearch() local
2128 if (coincident) { in BinarySearch()
2130 if (coincident->fNext) { in BinarySearch()
2132 coincident = sect1->fCoincident; in BinarySearch()
2136 if (!coincident->fCoinStart.isCoincident()) { in BinarySearch()
2139 if (!coincident->fCoinEnd.isCoincident()) { in BinarySearch()
2142 int index = intersections->insertCoincident(coincident->fStartT, in BinarySearch()
[all …]
DSkOpSegment.cpp1267 bool coincident = false; in missingCoincidence() local
1272 coincident = (SkDPoint::ApproximatelyEqual(priorPtT->fPt, oppStart->fPt) || in missingCoincidence()
1277 if (!coincident) { in missingCoincidence()
1278 coincident = testForCoincidence(priorPtT, ptT, prior, spanBase, opp, 5000); in missingCoincidence()
1280 if (coincident) { in missingCoincidence()
1682 bool coincident = true; in testForCoincidence() local
1686 coincident = false; in testForCoincidence()
1701 coincident |= flatness < flatnessLimit; in testForCoincidence()
1705 return coincident; in testForCoincidence()
DSkPathOpsDebug.cpp680 bool coincident = false; in debugMissingCoincidence() local
685 coincident = (SkDPoint::ApproximatelyEqual(priorPtT->fPt, oppStart->fPt) || in debugMissingCoincidence()
690 if (!coincident) { in debugMissingCoincidence()
691 coincident = testForCoincidence(priorPtT, ptT, prior, spanBase, opp, 5000); in debugMissingCoincidence()
693 if (coincident) { in debugMissingCoincidence()
/external/skia/src/gpu/
DGrTessellator.cpp452 bool coincident(const SkPoint& a, const SkPoint& b) { in coincident() function
792 if (coincident(edge->fTop->fPoint, other->fTop->fPoint)) { in merge_edges_above()
812 if (coincident(edge->fBottom->fPoint, other->fBottom->fPoint)) { in merge_edges_below()
949 if (coincident(prevV->fPoint, p)) { in check_for_intersection()
951 } else if (coincident(nextV->fPoint, p)) { in check_for_intersection()
978 if (coincident(v->fPrev->fPoint, v->fPoint)) { in sanitize_contours()
1003 if (coincident(v->fPrev->fPoint, v->fPoint)) { in merge_coincident_vertices()
/external/skia/tests/
DPathOpsDebug.cpp1036 const SkOpSpan* coincident = fCoincident; in dumpCoin() local
1041 coincident->dump(); in dumpCoin()
1046 } while ((coincident = coincident->fCoincident) != this); in dumpCoin()