arm, neon: implement mat4 inv with neon

This commit is contained in:
Recep Aslantas
2021-04-24 17:54:01 +03:00
parent a111693b6b
commit afac887850
2 changed files with 134 additions and 0 deletions

View File

@@ -597,6 +597,8 @@ void
glm_mat4_inv(mat4 mat, mat4 dest) {
#if defined( __SSE__ ) || defined( __SSE2__ )
glm_mat4_inv_sse2(mat, dest);
#elif defined(CGLM_NEON_FP)
glm_mat4_inv_neon(mat, dest);
#else
float t[6];
float det;