Home
last modified time | relevance | path

Searched refs:fFillType (Results 1 – 18 of 18) 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()
DGrPath.h27 , fFillType(GrPathRendering::kWinding_FillType) in GrPath()
39 GrPathRendering::FillType getFillType() const { return fFillType; } in getFillType()
47 GrPathRendering::FillType fFillType; variable
/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/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/skia/src/gpu/ops/
DGrDrawPathOp.h45 GrPathRendering::FillType fillType() const { return fFillType; } in fillType()
62 GrPathRendering::FillType fFillType; variable
DGrDrawPathOp.cpp34 , 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/include/core/
DSkPath.h152 SkPathFillType getFillType() const { return (SkPathFillType)fFillType; } in getFillType()
158 fFillType = SkToU8(ft); in setFillType()
172 fFillType ^= 2; in toggleInverseFillType()
1683 uint8_t fFillType : 2; variable
/external/skia/src/core/
DSkPath_serial.cpp77 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemoryAsRRect()
98 int32_t packed = (fFillType << kFillType_SerializationShift) | in writeToMemory()
DSkPath.cpp154 fFillType = SkToU8(SkPathFillType::kWinding); in resetFields()
186 fFillType = that.fFillType; in copyFields()
198 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get()); in operator ==()
206 const auto ft = fFillType; in swap()
207 fFillType = that.fFillType; in swap()
208 that.fFillType = ft; in swap()
360 SkASSERT((unsigned)fFillType < (1 << (32 - SkPathPriv::kPathRefGenIDBitCnt))); in getGenerationID()
361 genID |= static_cast<uint32_t>(fFillType) << SkPathPriv::kPathRefGenIDBitCnt; in getGenerationID()
1580 tmp.fFillType = fFillType; in transform()
1634 dst->fFillType = fFillType; in transform()
[all …]
/external/skqp/src/gpu/gl/
DGrGLPath.cpp320 fFillType = convert_skpath_filltype(skPath->getFillType()); in GrGLPath()
/external/skia/src/gpu/gl/
DGrGLPath.cpp318 fFillType = convert_skpath_filltype(skPath->getFillType()); in GrGLPath()