Lines Matching refs:fill
22 static const int kPathRefGenIDBitCnt = 30; // leave room for the fill type (skbug.com/1762)
80 // In some scenarios (e.g. fill or convexity checking all but the last leading move to are
357 static bool IsInverseFillType(SkPathFillType fill) {
358 return (static_cast<int>(fill) & 2) != 0;
361 /** Returns equivalent SkPath::FillType representing SkPath fill inside its bounds.
364 @param fill one of: kWinding_FillType, kEvenOdd_FillType,
366 @return fill, or kWinding_FillType or kEvenOdd_FillType if fill is inverted
368 static SkPathFillType ConvertToNonInverseFillType(SkPathFillType fill) {
369 return (SkPathFillType)(static_cast<int>(fill) & 1);