Searched refs:windValue (Results 1 - 7 of 7) sorted by relevance

/external/skia/src/pathops/
H A DSkPathOpsWinding.cpp174 } else if (!span->windValue() && !span->oppValue()) {
304 if (span->windValue() == 0 && span->oppValue() == 0) {
322 int windValue = ccw ? -span->windValue() : span->windValue(); local
324 wind += windValue;
H A DSkOpCoincidence.cpp880 if (!s1->starter(e1)->span()->upCast()->windValue()) {
885 if (!s1->starter(e1)->span()->upCast()->windValue()) {
893 if (!s2->starter(e2)->span()->upCast()->windValue()) {
898 if (!s2->starter(e2)->span()->upCast()->windValue()) {
1038 int windValue = start->windValue(); local
1040 int oWindValue = oStart->windValue();
1045 int oWindDiff = operandSwap ? oppValue : windValue;
1050 bool addToStart = windValue && (windValue > windDif
[all...]
H A DSkOpSpan.h532 void setWindValue(int windValue) { argument
534 SkASSERT(windValue >= 0);
536 SkOPASSERT(!windValue || !fDone);
537 fWindValue = windValue;
552 int windValue() const { function in class:SkOpSpan
H A DSkOpSegment.h379 int result = start->t() < end->t() ? -start->upCast()->windValue()
380 : end->upCast()->windValue();
H A DSkOpSegment.cpp60 if (upSpan->windValue() || upSpan->oppValue()) {
79 if (downSpan->windValue() || downSpan->oppValue()) {
1074 if (foundMin->windValue() != origMin->windValue()
H A DSkPathOpsDebug.cpp818 if (span->windValue()) glitches->record(SkPathOpsDebug::kCollapsedWindValue_Glitch, span);
1179 str->appendf(" windValue=%d", span->windValue());
1209 SkDebugf(" windValue=%d\n", span->windValue());
1245 SkDebugf(" windValue=%d oppValue=%d\n", span->windValue(), span->oppValue());
1358 if (minSpan->windValue() == SK_MinS32) {
1364 SkASSERT(!DEBUG_LIMIT_WIND_SUM || between(0, minSpan->windValue(), DEBUG_LIMIT_WIND_SUM));
1370 wind += next->debugSign() * (op ? minSpan->oppValue() : minSpan->windValue());
[all...]
/external/skia/tests/
H A DPathOpsDebug.cpp872 SkDebugf(" sgn=%d windVal=%d", this->debugSign(), mSpan.windValue());
1109 SkDebugf(" windVal=%d", this->windValue());

Completed in 2873 milliseconds