Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 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. |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 3 | #include "tools/fiddle/examples.h" |
Hal Canary | 8751512 | 2019-03-15 14:22:51 -0400 | [diff] [blame] | 4 | // HASH=2bffb6384cc20077e632e7d01da045ca |
| 5 | REG_FIDDLE(Paint_053, 256, 200, false, 0) { |
| 6 | void draw(SkCanvas* canvas) { |
| 7 | SkPaint paint; |
| 8 | paint.setStyle(SkPaint::kStroke_Style); |
| 9 | paint.setStrokeWidth(20); |
| 10 | SkPath path; |
| 11 | path.moveTo(30, 30); |
| 12 | path.lineTo(30, 30); |
| 13 | path.moveTo(70, 30); |
| 14 | path.lineTo(90, 40); |
| 15 | for (SkPaint::Cap c : { SkPaint::kButt_Cap, SkPaint::kRound_Cap, SkPaint::kSquare_Cap } ) { |
| 16 | paint.setStrokeCap(c); |
| 17 | canvas->drawPath(path, paint); |
| 18 | canvas->translate(0, 70); |
| 19 | } |
| 20 | } |
| 21 | } // END FIDDLE |