Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrDistanceFieldGenFromVector.h33 inline bool IsDistanceFieldSupportedFillType(SkPath::FillType fFillType) in IsDistanceFieldSupportedFillType() argument
35 return (SkPath::kEvenOdd_FillType == fFillType || in IsDistanceFieldSupportedFillType()
36 SkPath::kInverseEvenOdd_FillType == fFillType); in IsDistanceFieldSupportedFillType()
DGrPath.h27 , fFillType(GrPathRendering::kWinding_FillType) in GrPath()
39 GrPathRendering::FillType getFillType() const { return fFillType; } in getFillType()
47 GrPathRendering::FillType fFillType; variable
/external/skia/src/gpu/ccpr/
DGrCCPRPathProcessor.h62 SkPath::FillType fillType() const { return fFillType; } in fillType()
79 const SkPath::FillType fFillType;
DGrCCPRPathProcessor.cpp53 : fFillType(fillType) { in GrCCPRPathProcessor()
89 b->add32((fFillType << 16) | this->atlas()->origin()); in getGLSLProcessorKey()
/external/skia/include/core/
DSkPath.h93 FillType getFillType() const { return (FillType)fFillType; } in getFillType()
101 fFillType = SkToU8(ft); in setFillType()
105 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); } in isInverseFillType()
112 fFillType ^= 2; in toggleInverseFillType()
1138 uint8_t fFillType; variable
/external/skia/src/gpu/ops/
DGrDrawPathOp.h41 GrPathRendering::FillType fillType() const { return fFillType; } in fillType()
63 GrPathRendering::FillType fFillType; variable
DGrDrawPathOp.cpp19 , fFillType(fill) in GrDrawPathOpBase()
/external/skia/src/core/
DSkPath.cpp144 fFillType = kWinding_FillType; in resetFields()
176 fFillType = that.fFillType; in copyFields()
187 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get()); in operator ==()
194 SkTSwap<uint8_t>(fFillType, that.fFillType); in swap()
340 SkASSERT((unsigned)fFillType < (1 << (32 - kPathRefGenIDBitCnt))); in getGenerationID()
341 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt; in getGenerationID()
1697 tmp.fFillType = fFillType; in transform()
1740 dst->fFillType = fFillType; in transform()
2050 (fFillType << kFillType_SerializationShift) | in writeToMemory()
2078 fFillType = (packed >> kFillType_SerializationShift) & 0x3; in readFromMemory()
[all …]
/external/skia/src/gpu/gl/
DGrGLPath.cpp320 fFillType = convert_skpath_filltype(skPath->getFillType()); in GrGLPath()