Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Path_ConvertToNonInverseFillType.cpp
Go to the documentation of this file.
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.
4// HASH=319f6b124458dcc0f9ce4d7bbde65810
5REG_FIDDLE(Path_ConvertToNonInverseFillType, 256, 256, true, 0) {
6#define nameValue(fill) { SkPathFillType::fill, #fill }
7
8void draw(SkCanvas* canvas) {
9 struct {
10 SkPathFillType fill;
11 const char* name;
12 } fills[] = {
17 };
18 for (unsigned i = 0; i < std::size(fills); ++i) {
19 if (fills[i].fill != (SkPathFillType) i) {
20 SkDebugf("fills array order does not match FillType enum order");
21 break;
22 }
23 SkDebugf("ConvertToNonInverseFillType(%s) == %s\n", fills[i].name,
24 fills[(int) SkPathFillType_ConvertToNonInverse(fills[i].fill)].name);
25 }
26}
27} // END FIDDLE
#define nameValue(fill)
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static SkPathFillType SkPathFillType_ConvertToNonInverse(SkPathFillType ft)
Definition SkPathTypes.h:30
SkPathFillType
Definition SkPathTypes.h:11
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
const char * name
Definition fuchsia.cc:50