Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / docs / examples / Canvas_drawRegion.cpp
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=80309e0deca0f8add616cec7bec634ca
5 REG_FIDDLE(Canvas_drawRegion, 256, 256, false, 0) {
6 void draw(SkCanvas* canvas) {
7     SkRegion region;
8     region.op({10, 10, 50, 50}, SkRegion::kUnion_Op);
9     region.op({10, 50, 90, 90}, SkRegion::kUnion_Op);
10     SkPaint paint;
11     paint.setAntiAlias(true);
12     paint.setStyle(SkPaint::kStroke_Style);
13     paint.setStrokeWidth(20);
14     paint.setStrokeJoin(SkPaint::kRound_Join);
15     canvas->drawRegion(region, paint);
16 }
17 }  // END FIDDLE