arm, neon: implement mat4 determinant with neon

This commit is contained in:
Recep Aslantas
2021-04-24 15:45:36 +03:00
parent ce9e5f5575
commit a111693b6b
3 changed files with 84 additions and 1 deletions

View File

@@ -562,6 +562,8 @@ float
glm_mat4_det(mat4 mat) {
#if defined( __SSE__ ) || defined( __SSE2__ )
return glm_mat4_det_sse2(mat);
#elif defined(CGLM_NEON_FP)
return glm_mat4_det_neon(mat);
#else
/* [square] det(A) = det(At) */
float t[6];