Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Macros | Functions
Path_ConvertToNonInverseFillType.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Macros

#define nameValue(fill)   { SkPathFillType::fill, #fill }
 

Functions

 REG_FIDDLE (Path_ConvertToNonInverseFillType, 256, 256, true, 0)
 

Macro Definition Documentation

◆ nameValue

#define nameValue (   fill)    { SkPathFillType::fill, #fill }

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Path_ConvertToNonInverseFillType  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Path_ConvertToNonInverseFillType.cpp.

5 {
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
const char * name
Definition fuchsia.cc:50