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.
3#include "tools/fiddle/examples.h"
4// HASH=fc793a14ed76c096a68a755c963c1ee0
5REG_FIDDLE(Region_setRects, 256, 70, false, 0) {
6void 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
19