Use float4 instead of gvec
diff --git a/renderer/pls_draw.cpp b/renderer/pls_draw.cpp
index 9056667..2372765 100644
--- a/renderer/pls_draw.cpp
+++ b/renderer/pls_draw.cpp
@@ -868,7 +868,7 @@
                 // Measure the rotations of curves in batches of 4.
                 assert(j + 4 <= rotationIdx);
 
-                rive::simd::gvec<float, 4> tx0, ty0, tx1, ty1;
+                float4 tx0, ty0, tx1, ty1;
                 std::tie(tx0, ty0, tx1, ty1) = simd::load4x4f(&m_tangentPairs[j][0].x);
 
                 float4 numer = tx0 * tx1 + ty0 * ty1;