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

  /external/skia/src/pathops/
SkOpCoincidence.cpp 224 int windValue = start->windValue();
226 int oWindValue = oStart->windValue();
231 int oWindDiff = operandSwap ? oppValue : windValue;
236 if (windValue && (windValue > windDiff || (windValue == windDiff
242 windValue -= oWindValue;
245 windValue += oWindValue;
249 windValue &= 1
    [all...]
SkPathOpsPostSect.cpp 78 // OPTIMIZE? remove the spans pointing to windValue==0 here or earlier?
79 // FIXME? assert that only one other span has a valid windValue or oppValue
109 if (oSpan && oSpan->windValue()) {
117 if (oFromSpan->windValue()) {
406 int windValue = start->windValue();
407 int oWindValue = oStart->windValue();
412 if (windValue >= oWindValue) {
417 windValue -= oWindValue;
420 windValue += oWindValue
    [all...]
SkPathOpsWinding.cpp 174 } else if (!span->windValue() && !span->oppValue()) {
296 if (span->windValue() == 0 && span->oppValue() == 0) {
314 int windValue = ccw ? -span->windValue() : span->windValue();
316 wind += windValue;
SkOpSpan.h 435 void setWindValue(int windValue) {
437 SkASSERT(windValue >= 0);
439 fWindValue = windValue;
454 int windValue() const {
SkPathOpsDebug.cpp 213 SkDebugf(" windValue=%d", span->windValue());
243 SkDebugf(" windValue=%d\n", span->windValue());
279 SkDebugf(" windValue=%d oppValue=%d\n", span->windValue(), span->oppValue());
342 if (minSpan->windValue() == SK_MinS32) {
348 SkASSERT(!DEBUG_LIMIT_WIND_SUM || between(0, minSpan->windValue(), DEBUG_LIMIT_WIND_SUM));
354 wind += next->debugSign() * (op ? minSpan->oppValue() : minSpan->windValue());
361 opp += next->debugSign() * (op ? minSpan->windValue() : minSpan->oppValue())
    [all...]
SkOpSegment.h 327 int result = start->t() < end->t() ? -start->upCast()->windValue()
328 : end->upCast()->windValue();
SkOpSegment.cpp 60 if (upSpan->windValue() || upSpan->oppValue()) {
79 if (downSpan->windValue() || downSpan->oppValue()) {
    [all...]
  /external/skia/tests/
PathOpsDebug.cpp 764 SkDebugf(" sgn=%d windVal=%d", this->debugSign(), mSpan.windValue());
983 SkDebugf(" windVal=%d", this->windValue());
    [all...]

Completed in 242 milliseconds