From bc9c9b2a94d370e412c917f13140085705049e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Thu, 7 Aug 2025 08:12:01 +0200 Subject: [PATCH] fix(mat4): transpose mat4f mat4f_tpo_r: mrow -> row[x] mat4f_tpo: mat4f_clone -> mat4f_tpo_r --- src/math/mat4.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/math/mat4.c b/src/math/mat4.c index 44eb261..e5e28fc 100644 --- a/src/math/mat4.c +++ b/src/math/mat4.c @@ -232,9 +232,9 @@ Mat4f_t* mat4f_tpo_r(Mat4f_t *__restrict out) Mat4f_t clone = mat4f_clone(out); #if defined (SIMD_X86) - __m128 res[4]; + __m128 row[4]; for (int i=0; i