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

Go to the source code of this file.

Functions

 REG_FIDDLE (Region_setRects, 256, 70, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Region_setRects  ,
256  ,
70  ,
false  ,
 
)

Definition at line 5 of file Region_setRects.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 SkIRect rects[] = { {10, 10, 40, 40}, {20, 20, 50, 50}, {30, 30, 60, 60} };
9 region.setRects(rects, std::size(rects));
10 canvas->drawRegion(region, SkPaint());
12 for (auto add : rects) {
14 }
15 region.translate(100, 0);
16 canvas->drawRegion(region, SkPaint());
17}
18} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawRegion(const SkRegion &region, const SkPaint &paint)
void translate(int dx, int dy)
Definition SkRegion.h:349
bool setEmpty()
Definition SkRegion.cpp:185
@ kUnion_Op
target unioned with operand
Definition SkRegion.h:369
bool setRects(const SkIRect rects[], int count)
Definition SkRegion.cpp:657
bool op(const SkIRect &rect, Op op)
Definition SkRegion.h:384
ClipOpAndAA opAA SkRegion region
Definition SkRecords.h:238