mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
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:
@@ -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() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user