Flutter Engine
The Flutter Engine
Canvas_clipPath.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.
4REG_FIDDLE(Canvas_clipPath, 256, 256, false, 0) {
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
REG_FIDDLE(Canvas_clipPath, 256, 256, false, 0)
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