blob: 0f8dba4ea78a65195fe6baf09e7cbb1ee394f2ce [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=c7bb6248e4735b8d1a32d02fba40d344
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Paint_setStyle, 256, 256, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 paint.setStrokeWidth(5);
9 SkRegion region;
Mike Reed92b33352019-08-24 19:39:13 -040010 region.op({140, 10, 160, 30}, SkRegion::kUnion_Op);
11 region.op({170, 40, 190, 60}, SkRegion::kUnion_Op);
Hal Canary87515122019-03-15 14:22:51 -040012 SkBitmap bitmap;
13 bitmap.setInfo(SkImageInfo::MakeA8(50, 50), 50);
14 uint8_t pixels[50][50];
15 for (int x = 0; x < 50; ++x) {
16 for (int y = 0; y < 50; ++y) {
17 pixels[y][x] = (x + y) % 5 ? 0xFF : 0x00;
18 }
19 }
20 bitmap.setPixels(pixels);
21 for (auto style : { SkPaint::kFill_Style,
22 SkPaint::kStroke_Style,
23 SkPaint::kStrokeAndFill_Style }) {
24 paint.setStyle(style);
25 canvas->drawLine(10, 10, 60, 60, paint);
26 canvas->drawRect({80, 10, 130, 60}, paint);
27 canvas->drawRegion(region, paint);
28 canvas->drawBitmap(bitmap, 200, 10, &paint);
29 canvas->translate(0, 80);
30 }
31}
32} // END FIDDLE