HomeSort by relevance Sort by last modified time
    Searched refs:fFillType (Results 1 - 5 of 5) sorted by null

  /external/skia/src/gpu/
GrPath.h 25 , fFillType(GrPathRendering::kWinding_FillType)
38 GrPathRendering::FillType getFillType() const { return fFillType; }
46 GrPathRendering::FillType fFillType;
  /external/skia/src/gpu/batches/
GrDrawPathBatch.h 29 GrPathRendering::FillType fillType() const { return fFillType; }
39 , fFillType(fill) {}
54 GrPathRendering::FillType fFillType;
  /external/skia/include/core/
SkPath.h 87 FillType getFillType() const { return (FillType)fFillType; }
95 fFillType = SkToU8(ft);
99 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); }
106 fFillType ^= 2;
    [all...]
  /external/skia/src/core/
SkPath.cpp 136 fFillType = kWinding_FillType;
168 fFillType = that.fFillType;
179 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get());
186 SkTSwap<uint8_t>(fFillType, that.fFillType);
332 SkASSERT((unsigned)fFillType < (1 << (32 - kPathRefGenIDBitCnt)));
333 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt;
    [all...]
  /external/skia/src/gpu/gl/
GrGLPath.cpp 312 fFillType = convert_skpath_filltype(skPath->getFillType());

Completed in 59 milliseconds