Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
skpaint_path_2d_path_effect.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (skpaint_path_2d_path_effect, 256, 256, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( skpaint_path_2d_path_effect  ,
256  ,
256  ,
false  ,
 
)

Definition at line 4 of file skpaint_path_2d_path_effect.cpp.

4 {
5void draw(SkCanvas* canvas) {
6 SkScalar scale = 10.0f;
8 static const int8_t pts[] = {2, 2, 1, 3, 0, 3, 2, 1, 3, 1, 4, 0, 4, 1,
9 5, 1, 4, 2, 4, 3, 2, 5, 2, 4, 3, 3, 2, 3};
10 path.moveTo(2 * scale, 3 * scale);
11 for (size_t i = 0; i < sizeof(pts) / sizeof(pts[0]); i += 2) {
12 path.lineTo(pts[i] * scale, pts[i + 1] * scale);
13 }
14 path.close();
17 paint.setPathEffect(SkPath2DPathEffect::Make(matrix, path));
18 paint.setAntiAlias(true);
19 canvas->clear(SK_ColorWHITE);
20 SkRect bounds{-4 * scale, -4 * scale, 256, 256};
21 canvas->drawRect(bounds, paint);
22}
23} // END FIDDLE
constexpr SkColor SK_ColorWHITE
Definition SkColor.h:122
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawRect(const SkRect &rect, const SkPaint &paint)
void clear(SkColor color)
Definition SkCanvas.h:1199
static SkMatrix Scale(SkScalar sx, SkScalar sy)
Definition SkMatrix.h:75
static sk_sp< SkPathEffect > Make(const SkMatrix &matrix, const SkPath &path)
const Paint & paint
float SkScalar
Definition extension.cpp:12
unsigned useCenter Optional< SkMatrix > matrix
Definition SkRecords.h:258
Optional< SkRect > bounds
Definition SkRecords.h:189
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition switches.h:57
const Scalar scale