xref: /aosp_15_r20/external/skia/docs/examples/Paint_053.cpp (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
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(Paint_053, 256, 200, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6     SkPaint paint;
7     paint.setStyle(SkPaint::kStroke_Style);
8     paint.setStrokeWidth(20);
9     SkPath path;
10     path.moveTo(30, 30);
11     path.lineTo(30, 30);
12     path.moveTo(70, 30);
13     path.lineTo(90, 40);
14     for (SkPaint::Cap c : { SkPaint::kButt_Cap, SkPaint::kRound_Cap, SkPaint::kSquare_Cap } ) {
15         paint.setStrokeCap(c);
16         canvas->drawPath(path, paint);
17         canvas->translate(0, 70);
18     }
19 }
20 }  // END FIDDLE
21