mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
Add FillRule::clockwise to the runtime
Diffs= 11d4e46498 Add FillRule::clockwise to the runtime (#8786) Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com>
This commit is contained in:
@@ -40,7 +40,8 @@ public:
|
||||
static SkPathFillType convert(FillRule value) {
|
||||
switch (value) {
|
||||
case FillRule::evenOdd: return SkPathFillType::kEvenOdd;
|
||||
case FillRule::nonZero: return SkPathFillType::kWinding;
|
||||
case FillRule::nonZero:
|
||||
case FillRule::clockwise: return SkPathFillType::kWinding;
|
||||
}
|
||||
assert(false);
|
||||
return SkPathFillType::kWinding;
|
||||
|
||||
Reference in New Issue
Block a user