Searched refs:GrFillRule (Results 1 – 3 of 3) sorted by relevance
63 static const GrUserStencilSettings* StencilPathSettings(GrFillRule fillRule) { in StencilPathSettings()84 return (fillRule == GrFillRule::kNonzero) ? &kIncrDecrStencil : &kInvertStencil; in StencilPathSettings()
201 enum class GrFillRule : bool { enum206 inline GrFillRule GrFillRuleForPathFillType(SkPathFillType fillType) { in GrFillRuleForPathFillType()210 return GrFillRule::kNonzero; in GrFillRuleForPathFillType()213 return GrFillRule::kEvenOdd; in GrFillRuleForPathFillType()218 inline GrFillRule GrFillRuleForSkPath(const SkPath& path) { in GrFillRuleForSkPath()
54 if (GrFillRuleForSkPath(path) == GrFillRule::kNonzero) { in addPath()