From b42a599310367212dbefdca4d804379361ac1904 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Mon, 19 Sep 2016 20:37:07 +0300 Subject: [PATCH] typo --- include/cglm-mat-simd.h | 2 +- include/cglm-mat.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cglm-mat-simd.h b/include/cglm-mat-simd.h index 4d2dad6..0877661 100644 --- a/include/cglm-mat-simd.h +++ b/include/cglm-mat-simd.h @@ -97,7 +97,7 @@ glm_mat4_det_sse2(mat4 mat) { CGLM_INLINE void -glm_mat4_inv_see2(mat4 mat, mat4 dest) { +glm_mat4_inv_sse2(mat4 mat, mat4 dest) { __m128 r0, r1, r2, r3, v0, v1, v2, v3, t0, t1, t2, t3, t4, t5, diff --git a/include/cglm-mat.h b/include/cglm-mat.h index b7ed74c..25f3cc0 100644 --- a/include/cglm-mat.h +++ b/include/cglm-mat.h @@ -189,7 +189,7 @@ CGLM_INLINE void glm_mat4_inv(mat4 mat, mat4 dest) { #if defined( __SSE__ ) || defined( __SSE2__ ) - glm_mat4_inv_see2(mat, dest); + glm_mat4_inv_sse2(mat, dest); #else float t[6]; float det;