arm, neon: neon/fma support for glm_inv_tr()

This commit is contained in:
Recep Aslantas
2021-04-28 14:46:14 +03:00
parent e4c35e32fc
commit 55ebbdbe40
3 changed files with 63 additions and 0 deletions

View File

@@ -158,6 +158,8 @@ void
glm_inv_tr(mat4 mat) {
#if defined( __SSE__ ) || defined( __SSE2__ )
glm_inv_tr_sse2(mat);
#elif defined(CGLM_NEON_FP)
glm_inv_tr_neon(mat);
#else
CGLM_ALIGN_MAT mat3 r;
CGLM_ALIGN(8) vec3 t;