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

Go to the source code of this file.

Functions

 REG_FIDDLE (Path_Iter_next, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Path_Iter_next  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Path_Iter_next.cpp.

5 {
6void draw(SkCanvas* canvas) {
8 path.moveTo(10, 10);
9 path.moveTo(20, 20);
10 path.quadTo(10, 20, 30, 40);
11 path.moveTo(1, 1);
12 path.close();
13 path.moveTo(30, 30);
14 path.lineTo(30.00001f, 30);
15
16 SkPath::Iter iter(path, false);
17 const char* verbStr[] = { "Move", "Line", "Quad", "Conic", "Cubic", "Close", "Done" };
18 const int pointCount[] = { 1 , 2 , 3 , 3 , 4 , 1 , 0 };
19 SkPath::Verb verb;
20 do {
21 SkPoint points[4];
22 verb = iter.next(points);
23 SkDebugf("k%s_Verb ", verbStr[(int) verb]);
24 for (int i = 0; i < pointCount[(int) verb]; ++i) {
25 SkDebugf("{%1.8g, %1.8g}, ", points[i].fX, points[i].fY);
26 }
27 SkDebugf("\n");
28 } while (SkPath::kDone_Verb != verb);
29 SkDebugf("\n");
30}
31} // END FIDDLE
static const int points[]
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
Type::kYUV Type::kRGBA() int(0.7 *637)
@ kDone_Verb
Definition SkPath.h:1464
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