Flutter Engine
The Flutter Engine
Canvas_getLocalClipBounds.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_getLocalClipBounds, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
6 SkCanvas local(256, 256);
7 canvas = &local;
9 SkDebugf("left:%g top:%g right:%g bottom:%g\n",
10 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
11 SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} };
13 clipPath.addPoly(clipPoints, std::size(clipPoints), true);
14 canvas->clipPath(clipPath);
15 bounds = canvas->getLocalClipBounds();
16 SkDebugf("left:%g top:%g right:%g bottom:%g\n",
17 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
18 canvas->scale(2, 2);
19 bounds = canvas->getLocalClipBounds();
20 SkDebugf("left:%g top:%g right:%g bottom:%g\n",
21 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
22}
23} // END FIDDLE
REG_FIDDLE(Canvas_getLocalClipBounds, 256, 256, true, 0)
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
SkRect getLocalClipBounds() const
Definition: SkCanvas.cpp:1586
void clipPath(const SkPath &path, SkClipOp op, bool doAntiAlias)
Definition: SkCanvas.cpp:1456
void scale(SkScalar sx, SkScalar sy)
Definition: SkCanvas.cpp:1289
Definition: SkPath.h:59
Optional< SkRect > bounds
Definition: SkRecords.h:189
clipPath(r.path, r.opAA.op(), r.opAA.aa())) DRAW(ClipRRect
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259