Searched refs:fFillType (Results 1 - 7 of 7) sorted by relevance

/external/skia/src/gpu/
H A DGrDistanceFieldGenFromVector.h33 inline bool IsDistanceFieldSupportedFillType(SkPath::FillType fFillType) argument
35 return (SkPath::kEvenOdd_FillType == fFillType ||
36 SkPath::kInverseEvenOdd_FillType == fFillType);
H A DGrPath.h27 , fFillType(GrPathRendering::kWinding_FillType)
39 GrPathRendering::FillType getFillType() const { return fFillType; }
47 GrPathRendering::FillType fFillType; member in class:GrPath
/external/skia/src/gpu/ops/
H A DGrDrawPathOp.h41 GrPathRendering::FillType fillType() const { return fFillType; }
61 GrPathRendering::FillType fFillType; member in class:GrDrawPathOpBase
H A DGrDrawPathOp.cpp20 , fFillType(fill)
/external/skia/include/core/
H A DSkPath.h96 FillType getFillType() const { return (FillType)fFillType; }
104 fFillType = SkToU8(ft);
108 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); }
115 fFillType ^= 2;
1141 uint8_t fFillType; member in class:SkPath
/external/skia/src/core/
H A DSkPath.cpp144 fFillType = kWinding_FillType;
176 fFillType = that.fFillType;
187 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get());
194 SkTSwap<uint8_t>(fFillType, that.fFillType);
340 SkASSERT((unsigned)fFillType < (1 << (32 - kPathRefGenIDBitCnt)));
341 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt;
1697 tmp.fFillType
[all...]
/external/skia/src/gpu/gl/
H A DGrGLPath.cpp320 fFillType = convert_skpath_filltype(skPath->getFillType());

Completed in 188 milliseconds