Home
last modified time | relevance | path

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

/external/skia/include/core/
DSkPath.h70 FillType getFillType() const { return (FillType)fFillType; } in getFillType()
78 fFillType = SkToU8(ft); in setFillType()
82 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); } in isInverseFillType()
89 fFillType ^= 2; in toggleInverseFillType()
978 uint8_t fFillType; variable
/external/skia/src/core/
DSkPath.cpp136 fFillType = kWinding_FillType; in resetFields()
168 fFillType = that.fFillType; in copyFields()
178 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get()); in operator ==()
185 SkTSwap<uint8_t>(fFillType, that.fFillType); in swap()
297 SkASSERT((unsigned)fFillType < (1 << (32 - kPathRefGenIDBitCnt))); in getGenerationID()
298 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt; in getGenerationID()
1442 tmp.fFillType = fFillType; in transform()
1485 dst->fFillType = fFillType; in transform()
1860 (fFillType << kFillType_SerializationShift) | in writeToMemory()
1881 fFillType = (packed >> kFillType_SerializationShift) & 0xFF; in readFromMemory()
[all …]