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 REG_FIDDLE(Region_translate, 256, 90, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6 SkRegion test;
7 SkIRect rects[] = {{40, 20, 50, 30}, {70, 40, 80, 50}, { 60, 10, 70, 20}};
8 test.setRects(rects, std::size(rects));
9 SkPaint paint;
10 for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN, SK_ColorMAGENTA } ) {
11 paint.setColor(color);
12 canvas->drawRegion(test, paint);
13 test.translate(10, 10);
14 }
15 }
16 } // END FIDDLE
17