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
diff --git a/.rive_head b/.rive_head
index a43f55d..d62a776 100644
--- a/.rive_head
+++ b/.rive_head
@@ -1 +1 @@
-194a38e7846180ce77a1575dca27208d099d7209
+a7615ab7c04c0112b50d3b8d2200de3feff8d4c5
diff --git a/tess/src/tess_render_path.cpp b/tess/src/tess_render_path.cpp
index 6599931..7cdd6cb 100644
--- a/tess/src/tess_render_path.cpp
+++ b/tess/src/tess_render_path.cpp
@@ -9,9 +9,7 @@
 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() {}