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

  /external/skia/include/core/
SkPath.h 70 FillType getFillType() const { return (FillType)fFillType; }
78 fFillType = SkToU8(ft);
82 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); }
89 fFillType ^= 2;
    [all...]
  /external/skia/src/core/
SkPath.cpp 136 fFillType = kWinding_FillType;
168 fFillType = that.fFillType;
178 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get());
185 SkTSwap<uint8_t>(fFillType, that.fFillType);
297 SkASSERT((unsigned)fFillType < (1 << (32 - kPathRefGenIDBitCnt)));
298 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt;
    [all...]

Completed in 38 milliseconds