Searched refs:oSpan (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/skia/experimental/Intersection/
H A DthingsToDo.txt421 const Span& oSpan = oSegment->fTs[oIndex];
422 if (oSpan.fT >= FLT_EPSILON && oSpan.fT <= 1 - FLT_EPSILON) {
425 if (!oSpan.fCoincident) {
428 if (checkNext && (oSpan.fT < FLT_EPSILON ^ step < 0)) {
432 if (checkOther && (oSpan.fT > 1 - FLT_EPSILON ^ step < 0)) {
471 Span* oSpan = &other->fTs[oStart];
473 bool markDone = !span->fDone && !oSpan->fDone;
493 double oSpanT = oSpan->fT;
496 oSpan
[all...]
H A DSimplify.cpp1868 Span* oSpan = oTest;
1871 SkDEBUGCODE(int originalWindValue = oSpan->fWindValue);
1872 while (approximately_negative(otherTMatchStart - oSpan->fT)
1873 && !approximately_negative(otherTMatchEnd - oSpan->fT)) {
1875 SkASSERT(originalWindValue == oSpan->fWindValue);
1878 other.decrementSpan(oSpan);
1879 } else if (track && oSpan->fT < 1 && testT < 1) {
1880 TrackOutside(oOutsideTs, oSpan->fT, testT);
1885 oSpan = &other.fTs[--oIndex];
1888 oTest = oSpan;
[all...]
/external/skia/experimental/Intersection/
H A DthingsToDo.txt421 const Span& oSpan = oSegment->fTs[oIndex];
422 if (oSpan.fT >= FLT_EPSILON && oSpan.fT <= 1 - FLT_EPSILON) {
425 if (!oSpan.fCoincident) {
428 if (checkNext && (oSpan.fT < FLT_EPSILON ^ step < 0)) {
432 if (checkOther && (oSpan.fT > 1 - FLT_EPSILON ^ step < 0)) {
471 Span* oSpan = &other->fTs[oStart];
473 bool markDone = !span->fDone && !oSpan->fDone;
493 double oSpanT = oSpan->fT;
496 oSpan
[all...]
H A DSimplify.cpp1868 Span* oSpan = oTest;
1871 SkDEBUGCODE(int originalWindValue = oSpan->fWindValue);
1872 while (approximately_negative(otherTMatchStart - oSpan->fT)
1873 && !approximately_negative(otherTMatchEnd - oSpan->fT)) {
1875 SkASSERT(originalWindValue == oSpan->fWindValue);
1878 other.decrementSpan(oSpan);
1879 } else if (track && oSpan->fT < 1 && testT < 1) {
1880 TrackOutside(oOutsideTs, oSpan->fT, testT);
1885 oSpan = &other.fTs[--oIndex];
1888 oTest = oSpan;
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpSegment.cpp319 const SkOpSpan& oSpan = other->fTs[ooIndex]; local
320 if (startPt != oSpan.fPt) {
323 if (oSpan.fT == fTs[ttIndex].fOtherT) {
862 SkOpSpan* oSpan; local
868 oSpan = &other->fTs[oFrom];
869 if (oSpan->fT < 1 && oSpan->fWindValue) {
872 if (oSpan->fT == 0) {
891 oAngle = oSpan->fFromAngle;
895 SkASSERT(!oSpan
932 SkOpSpan& oSpan = other1->fTs[oIdx]; local
941 SkOpSpan& oSpan = other1->fTs[oIdx]; local
973 alignSpan(const SkPoint& newPt, double newT, const SkOpSegment* other, double otherT, const SkOpSegment* other2, SkOpSpan* oSpan, SkTDArray<AlignedSpan>* alignedArray) argument
997 SkOpSpan* oSpan = &other->fTs[oIndex]; local
1077 SkOpSpan& oSpan = other->fTs[--oIndex]; local
[all...]
H A DSkOpAngle.cpp302 const SkOpSpan& oSpan = other->span(oIndex);
303 if (oSpan.fOther != fSegment) {
306 if (oSpan.fOtherIndex == checkEnd) {
309 if (!approximately_equal(oSpan.fOtherT, span.fT)) {
853 const SkOpSpan& oSpan = oSeg->span(oMin); local
854 if (!span.fSmall && !oSpan.fSmall) {
H A DSkOpSegment.h407 const SkOpSegment* other2, SkOpSpan* oSpan, SkTDArray<AlignedSpan>* );
421 static void CheckOneLink(const SkOpSpan* test, const SkOpSpan* oSpan,
/external/skia/src/pathops/
H A DSkOpSegment.cpp318 const SkOpSpan& oSpan = other->fTs[ooIndex]; local
319 if (startPt != oSpan.fPt) {
322 if (oSpan.fT == fTs[ttIndex].fOtherT) {
849 SkOpSpan& oSpan = other->fTs[span->fOtherIndex]; local
858 oAngle = oSpan.fFromAngle;
862 SkASSERT(!oSpan.fTiny && (other->fTs[span->fOtherIndex + 1].fT > 0
876 oAngle = oSpan.fToAngle;
899 SkOpSpan& oSpan = other1->fTs[oIdx]; local
900 if (oSpan.fOther != other2) {
903 if (oSpan
908 SkOpSpan& oSpan = other1->fTs[oIdx]; local
940 alignSpan(const SkPoint& newPt, double newT, const SkOpSegment* other, double otherT, const SkOpSegment* other2, SkOpSpan* oSpan, SkTDArray<AlignedSpan>* alignedArray) argument
964 SkOpSpan* oSpan = &other->fTs[oIndex]; local
1044 SkOpSpan& oSpan = other->fTs[--oIndex]; local
[all...]
H A DSkOpAngle.cpp305 const SkOpSpan& oSpan = other->span(oIndex);
306 if (oSpan.fOther != fSegment) {
309 if (oSpan.fOtherIndex == checkEnd) {
312 if (!approximately_equal(oSpan.fOtherT, span.fT)) {
856 const SkOpSpan& oSpan = oSeg->span(oMin); local
857 if (!span.fSmall && !oSpan.fSmall) {
H A DSkOpSegment.h405 const SkOpSegment* other2, SkOpSpan* oSpan, SkTDArray<AlignedSpan>* );
419 static void CheckOneLink(const SkOpSpan* test, const SkOpSpan* oSpan,
/external/skia/tests/
H A DPathOpsDebug.cpp489 const SkOpSpan& oSpan = span->fOther->span(span->fOtherIndex); local
490 const SkOpSegment* segment = oSpan.fOther;
492 SkDebugf("spanIndex:%d ", oSpan.fOtherIndex);
/external/chromium_org/third_party/skia/tests/
H A DPathOpsDebug.cpp621 const SkOpSpan& oSpan = span->fOther->span(span->fOtherIndex); local
622 const SkOpSegment* segment = oSpan.fOther;
624 SkDebugf("spanIndex:%d ", oSpan.fOtherIndex);

Completed in 4454 milliseconds