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

  /external/skia/src/pathops/
SkOpCoincidence.cpp 225 int oppValue = start->oppValue();
227 int oOppValue = oStart->oppValue();
231 int oWindDiff = operandSwap ? oppValue : windValue;
243 oppValue -= oOppValue;
246 oppValue += oOppValue;
252 oppValue &= 1;
257 SkTSwap(windValue, oppValue);
261 oOppValue -= oppValue;
264 oOppValue += oppValue;
    [all...]
SkPathOpsPostSect.cpp 79 // FIXME? assert that only one other span has a valid windValue or oppValue
408 int oppValue = start->oppValue();
409 int oOppValue = oStart->oppValue();
418 oppValue -= oOppValue;
421 oppValue += oOppValue;
427 oppValue &= 1;
432 SkTSwap(windValue, oppValue);
436 oOppValue -= oppValue;
439 oOppValue += oppValue;
    [all...]
SkPathOpsWinding.cpp 174 } else if (!span->windValue() && !span->oppValue()) {
296 if (span->windValue() == 0 && span->oppValue() == 0) {
315 int oppValue = ccw ? -span->oppValue() : span->oppValue();
317 oppWind += oppValue;
SkPathOpsDebug.cpp 208 if (span->oppValue() && span->oppSum() == SK_MinS32) {
210 } else if (span->oppValue() || span->oppSum() != SK_MinS32) {
214 if (span->oppValue() || span->oppSum() != SK_MinS32) {
215 SkDebugf(" oppValue=%d", span->oppValue());
279 SkDebugf(" windValue=%d oppValue=%d\n", span->windValue(), span->oppValue());
350 || between(-DEBUG_LIMIT_WIND_SUM, minSpan->oppValue(), DEBUG_LIMIT_WIND_SUM));
354 wind += next->debugSign() * (op ? minSpan->oppValue() : minSpan->windValue());
361 opp += next->debugSign() * (op ? minSpan->windValue() : minSpan->oppValue());
    [all...]
SkOpSpan.h 403 int oppValue() const {
422 void setOppValue(int oppValue) {
425 fOppValue = oppValue;
SkOpSegment.h 258 int result = start->t() < end->t() ? -start->upCast()->oppValue()
259 : end->upCast()->oppValue();
SkOpSegment.cpp 60 if (upSpan->windValue() || upSpan->oppValue()) {
79 if (downSpan->windValue() || downSpan->oppValue()) {
    [all...]
  /external/skia/tests/
PathOpsDebug.cpp 768 if (mSpan.oppValue() != 0 || mSpan.oppSum() != SK_MinS32) {
769 SkDebugf(" oppVal=%d", mSpan.oppValue());
986 if (this->oppValue() != 0 || this->oppSum() != SK_MinS32) {
987 SkDebugf(" oppVal=%d", this->oppValue());
    [all...]

Completed in 202 milliseconds