blob: 37e8cb683f7284eeed15804522cf98361527e9bd [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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 "fiddle/examples.h"
4// HASH=80309e0deca0f8add616cec7bec634ca
5REG_FIDDLE(Canvas_076, 256, 256, false, 0) {
6void 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