Home
last modified time | relevance | path

Searched refs:concavePath (Results 1 – 2 of 2) sorted by relevance

/third_party/flutter/skia/samplecode/
DSampleClipDrawMatch.cpp74 SkPath concavePath; in create_concave_path() local
75 concavePath.moveTo(kMin, kMin); in create_concave_path()
76 concavePath.lineTo(kMid, 105.0f); in create_concave_path()
77 concavePath.lineTo(kMax, kMin); in create_concave_path()
78 concavePath.lineTo(295.0f, kMid); in create_concave_path()
79 concavePath.lineTo(kMax, kMax); in create_concave_path()
80 concavePath.lineTo(kMid, 295.0f); in create_concave_path()
81 concavePath.lineTo(kMin, kMax); in create_concave_path()
82 concavePath.lineTo(105.0f, kMid); in create_concave_path()
83 concavePath.close(); in create_concave_path()
[all …]
/third_party/flutter/skia/example/
DSkiaSDLExample.cpp89 SkPath concavePath; in create_star() local
96 concavePath.moveTo(points[0]); in create_star()
98 concavePath.lineTo(points[(2 * i) % kNumPoints]); in create_star()
100 concavePath.setFillType(SkPath::kEvenOdd_FillType); in create_star()
101 SkASSERT(!concavePath.isConvex()); in create_star()
102 concavePath.close(); in create_star()
103 return concavePath; in create_star()