Update call site for RawPath constructor

oops - forgot to build the tess renderer on the prev PR (should update the bots to build viewer in a few configs)

Diffs=
a7615ab7c Update call site for RawPath constructor
This commit is contained in:
mikerreed
2022-08-29 20:00:58 +00:00
parent d34a9f2def
commit 155914d1b9
2 changed files with 2 additions and 4 deletions

View File

@@ -9,9 +9,7 @@ TessRenderPath::TessRenderPath() : m_segmentedContour(contourThreshold) {}
TessRenderPath::TessRenderPath(Span<const Vec2D> points,
Span<const PathVerb> verbs,
FillRule fillRule) :
m_rawPath(points.data(), points.size(), verbs.data(), verbs.size()),
m_fillRule(fillRule),
m_segmentedContour(contourThreshold) {}
m_rawPath(points, verbs), m_fillRule(fillRule), m_segmentedContour(contourThreshold) {}
TessRenderPath::~TessRenderPath() {}