blob: 2ea73308ab4cc5ee70b6fa779e94bf8c94b13bff [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=fc793a14ed76c096a68a755c963c1ee0
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Region_setRects, 256, 70, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkIRect rects[] = { {10, 10, 40, 40}, {20, 20, 50, 50}, {30, 30, 60, 60} };
8 SkRegion region;
9 region.setRects(rects, SK_ARRAY_COUNT(rects));
10 canvas->drawRegion(region, SkPaint());
11 region.setEmpty();
12 for (auto add : rects) {
13 region.op(add, SkRegion::kUnion_Op);
14 }
15 region.translate(100, 0);
16 canvas->drawRegion(region, SkPaint());
17}
18} // END FIDDLE