1 // Copyright 2019 Google LLC.
2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3 #include "tools/fiddle/examples.h"
4 REG_FIDDLE(Path_IsInverseFillType, 256, 256, true, 0) {
5 #define nameValue(fill) { SkPathFillType::fill, #fill }
6
draw(SkCanvas * canvas)7 void draw(SkCanvas* canvas) {
8 struct {
9 SkPathFillType fill;
10 const char* name;
11 } fills[] = {
12 nameValue(kWinding),
13 nameValue(kEvenOdd),
14 nameValue(kInverseWinding),
15 nameValue(kInverseEvenOdd),
16 };
17 for (auto fill: fills ) {
18 SkDebugf("IsInverseFillType(%s) == %s\n", fill.name, SkPathFillType_IsInverse(fill.fill) ?
19 "true" : "false");
20 }
21 }
22 } // END FIDDLE
23