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

Go to the source code of this file.

Functions

 REG_FIDDLE (Canvas_getLocalClipBounds, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Canvas_getLocalClipBounds  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Canvas_getLocalClipBounds.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 SkCanvas local(256, 256);
8 canvas = &local;
10 SkDebugf("left:%g top:%g right:%g bottom:%g\n",
11 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
12 SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} };
14 clipPath.addPoly(clipPoints, std::size(clipPoints), true);
15 canvas->clipPath(clipPath);
16 bounds = canvas->getLocalClipBounds();
17 SkDebugf("left:%g top:%g right:%g bottom:%g\n",
18 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
19 canvas->scale(2, 2);
20 bounds = canvas->getLocalClipBounds();
21 SkDebugf("left:%g top:%g right:%g bottom:%g\n",
22 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
23}
24} // END FIDDLE
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
void clipPath(const SkPath &path, SkClipOp op, bool doAntiAlias)
void scale(SkScalar sx, SkScalar sy)
Optional< SkRect > bounds
Definition SkRecords.h:189
clipPath(r.path, r.opAA.op(), r.opAA.aa())) DRAW(ClipRRect