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 76 FillType getFillType() const { return (FillType)fFillType; }
84 fFillType = SkToU8(ft);
89 bool isInverseFillType() const { return (fFillType & 2) != 0; }
96 fFillType ^= 2;
659 uint8_t fFillType;
  /external/skia/src/core/
SkPath.cpp 99 SkPath::SkPath() : fBoundsIsDirty(true), fFillType(kWinding_FillType) {
126 fFillType = src.fFillType;
139 (a.fFillType == b.fFillType && a.fVerbs == b.fVerbs && a.fPts == b.fPts);
149 SkTSwap<uint8_t>(fFillType, other.fFillType);
954 tmp.fFillType = fFillType;
1000 dst->fFillType = fFillType
    [all...]

Completed in 173 milliseconds