Main
Named Fiddles
Skia Fiddle
Skia Version:
3d1a3b
void draw(SkCanvas* canvas) { SkPath path1, path2; path1.setFillType(SkPathFillType::kInverseWinding); path1.addRect({10, 20, 30, 40}); SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); path1.rewind(); SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); }
Skia API Documentation