Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Path_Effect_Methods.cpp
Go to the documentation of this file.
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.
4// HASH=8cf5684b187d60f09e11c4a48993ea39
5REG_FIDDLE(Path_Effect_Methods, 256, 160, false, 0) {
6void draw(SkCanvas* canvas) {
9 paint.setStrokeWidth(16);
10 SkScalar intervals[] = {30, 10};
11 paint.setPathEffect(SkDashPathEffect::Make(intervals, std::size(intervals), 1));
12 canvas->drawRoundRect({20, 20, 120, 120}, 20, 20, paint);
13}
14} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawRoundRect(const SkRect &rect, SkScalar rx, SkScalar ry, const SkPaint &paint)
static sk_sp< SkPathEffect > Make(const SkScalar intervals[], int count, SkScalar phase)
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
const Paint & paint
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
float SkScalar
Definition extension.cpp:12