Home
last modified time | relevance | path

Searched refs:fFillType (Results 1 – 2 of 2) sorted by relevance

/external/skia/include/core/
DSkPath.h69 FillType getFillType() const { return (FillType)fFillType; } in getFillType()
77 fFillType = SkToU8(ft); in setFillType()
82 bool isInverseFillType() const { return (fFillType & 2) != 0; } in isInverseFillType()
89 fFillType ^= 2; in toggleInverseFillType()
746 uint8_t fFillType; variable
/external/skia/src/core/
DSkPath.cpp117 : fFillType(kWinding_FillType) in SkPath()
149 fFillType = src.fFillType; in operator =()
169 (a.fFillType == b.fFillType && a.fSegmentMask == b.fSegmentMask && in operator ==()
180 SkTSwap<uint8_t>(fFillType, other.fFillType); in swap()
1182 tmp.fFillType = fFillType; in transform()
1228 dst->fFillType = fFillType; in transform()
1597 buffer.write32((fFillType << 8) | fSegmentMask); in flatten()
1606 fFillType = packed >> 8; in unflatten()
1686 SkASSERT((fFillType & ~3) == 0); in validate()