HomeSort by relevance Sort by last modified time
    Searched refs:concavePath (Results 1 - 2 of 2) sorted by null

  /external/skia/samplecode/
SampleClipDrawMatch.cpp 74 SkPath concavePath;
75 concavePath.moveTo(kMin, kMin);
76 concavePath.lineTo(kMid, 105.0f);
77 concavePath.lineTo(kMax, kMin);
78 concavePath.lineTo(295.0f, kMid);
79 concavePath.lineTo(kMax, kMax);
80 concavePath.lineTo(kMid, 295.0f);
81 concavePath.lineTo(kMin, kMax);
82 concavePath.lineTo(105.0f, kMid);
83 concavePath.close()
    [all...]
  /external/skia/example/
SkiaSDLExample.cpp 85 SkPath concavePath;
92 concavePath.moveTo(points[0]);
94 concavePath.lineTo(points[(2 * i) % kNumPoints]);
96 concavePath.setFillType(SkPath::kEvenOdd_FillType);
97 SkASSERT(!concavePath.isConvex());
98 concavePath.close();
99 return concavePath;

Completed in 74 milliseconds