From 9da0c80e26acd26490b9970ae449505bf5fb53be Mon Sep 17 00:00:00 2001 From: Amaury Le Leyzour Date: Thu, 21 Nov 2019 13:03:22 -0800 Subject: [PATCH] Yet another fix as this is no longer covered by unit tests --- glm/detail/func_geometric_simd.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/func_geometric_simd.inl b/glm/detail/func_geometric_simd.inl index ab658be1..dfe3f4c9 100644 --- a/glm/detail/func_geometric_simd.inl +++ b/glm/detail/func_geometric_simd.inl @@ -155,7 +155,7 @@ namespace detail float32x4_t vd = vrsqrteq_f32(p); vec<4, float, Q> Result; - Result.data = vmulq_f32(v, vd); + Result.data = vmulq_f32(v.data, vd); return Result; } };