HomeSort by relevance Sort by last modified time
    Searched defs:windValue (Results 1 - 4 of 4) 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...]
SkOpSpan.h 435 void setWindValue(int windValue) {
437 SkASSERT(windValue >= 0);
439 fWindValue = windValue;
454 int windValue() const {
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;

Completed in 64 milliseconds