Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrDistanceFieldGenFromVector.h29 inline bool IsDistanceFieldSupportedFillType(SkPathFillType fFillType) in IsDistanceFieldSupportedFillType() argument
31 return (SkPathFillType::kEvenOdd == fFillType || in IsDistanceFieldSupportedFillType()
32 SkPathFillType::kInverseEvenOdd == fFillType); in IsDistanceFieldSupportedFillType()
/external/skqp/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/include/core/
DSkPathBuilder.h27 SkPathFillType fillType() const { return fFillType; } in fillType()
33 SkPathBuilder& setFillType(SkPathFillType ft) { fFillType = ft; return *this; } in setFillType()
217 fFillType = (SkPathFillType)((unsigned)fFillType ^ 2); in toggleInverseFillType()
226 SkPathFillType fFillType; variable
DSkPath.h203 SkPathFillType getFillType() const { return (SkPathFillType)fFillType; } in getFillType()
209 fFillType = SkToU8(ft); in setFillType()
223 fFillType ^= 2; in toggleInverseFillType()
1772 uint8_t fFillType : 2; variable
/external/skqp/src/gpu/ops/
DGrStencilPathOp.h54 , fFillType(fillType) in GrStencilPathOp()
67 GrPathRendering::FillType fFillType; variable
DGrDrawPathOp.h43 GrPathRendering::FillType fillType() const { return fFillType; } in fillType()
65 GrPathRendering::FillType fFillType; variable
DGrStencilPathOp.cpp35 GrStencilSettings stencil(GrPathRendering::GetStencilPassSettings(fFillType), in onExecute()
DGrDrawPathOp.cpp20 , fFillType(fill) in GrDrawPathOpBase()
/external/skqp/include/core/
DSkPath.h185 FillType getFillType() const { return (FillType)fFillType; } in getFillType()
194 fFillType = SkToU8(ft); in setFillType()
202 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); } in isInverseFillType()
208 fFillType ^= 2; in toggleInverseFillType()
1686 uint8_t fFillType : 2; variable
/external/skqp/src/core/
DSkPath_serial.cpp75 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemoryAsRRect()
96 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemory()
315 fFillType = fillType; in readFromMemory_LE3()
DSkPath.cpp165 fFillType = kWinding_FillType; in resetFields()
197 fFillType = that.fFillType; in copyFields()
210 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get()); in operator ==()
218 const auto ft = fFillType; in swap()
219 fFillType = that.fFillType; in swap()
220 that.fFillType = ft; in swap()
376 SkASSERT((unsigned)fFillType < (1 << (32 - SkPathPriv::kPathRefGenIDBitCnt))); in getGenerationID()
377 genID |= static_cast<uint32_t>(fFillType) << SkPathPriv::kPathRefGenIDBitCnt; in getGenerationID()
1812 tmp.fFillType = fFillType; in transform()
1858 dst->fFillType = fFillType; in transform()
[all …]
/external/skia/src/core/
DSkPath_serial.cpp78 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemoryAsRRect()
99 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemory()
DSkPath.cpp156 , fFillType((unsigned)ft) in SkPath()
163 fFillType = SkToU8(SkPathFillType::kWinding); in resetFields()
195 fFillType = that.fFillType; in copyFields()
207 (a.fFillType == b.fFillType && *a.fPathRef == *b.fPathRef); in operator ==()
215 const auto ft = fFillType; in swap()
216 fFillType = that.fFillType; in swap()
217 that.fFillType = ft; in swap()
351 SkASSERT((unsigned)fFillType < (1 << (32 - SkPathPriv::kPathRefGenIDBitCnt))); in getGenerationID()
352 genID |= static_cast<uint32_t>(fFillType) << SkPathPriv::kPathRefGenIDBitCnt; in getGenerationID()
1574 tmp.fFillType = fFillType; in transform()
[all …]
DSkPathBuilder.cpp23 fFillType = ft; in SkPathBuilder()
37 fFillType = SkPathFillType::kWinding; in reset()
209 return SkPath(std::move(pr), fFillType, fIsVolatile, convexity, dir); in make()
/external/skqp/src/gpu/gl/
DGrGLPath.cpp320 fFillType = convert_skpath_filltype(skPath->getFillType()); in GrGLPath()