Flutter Engine
The Flutter Engine
Functions
Canvas_clipPath.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Canvas_clipPath, 256, 256, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Canvas_clipPath  ,
256  ,
256  ,
false  ,
 
)

Definition at line 4 of file Canvas_clipPath.cpp.

4 {
5void draw(SkCanvas* canvas) {
7 paint.setAntiAlias(true);
9 path.addRect({20, 30, 100, 110});
11 canvas->save();
12 canvas->clipPath(path, SkClipOp::kDifference, false);
13 canvas->drawCircle(70, 100, 60, paint);
14 canvas->restore();
15 canvas->translate(100, 100);
16 path.setFillType(SkPathFillType::kWinding);
17 canvas->clipPath(path, SkClipOp::kIntersect, false);
18 canvas->drawCircle(70, 100, 60, paint);
19}
20} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void restore()
Definition: SkCanvas.cpp:461
void translate(SkScalar dx, SkScalar dy)
Definition: SkCanvas.cpp:1278
void clipPath(const SkPath &path, SkClipOp op, bool doAntiAlias)
Definition: SkCanvas.cpp:1456
int save()
Definition: SkCanvas.cpp:447
void drawCircle(SkScalar cx, SkScalar cy, SkScalar radius, const SkPaint &paint)
Definition: SkCanvas.cpp:2707
Definition: SkPath.h:59
const Paint & paint
Definition: color_source.cc:38
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition: switches.h:57