simd: replace glm_simd_ with glmm_

* now glmm_ is used as global simd namescape
This commit is contained in:
Recep Aslantas
2018-05-08 15:55:36 +03:00
parent 56f0bb0928
commit 5dbbd0826d
3 changed files with 8 additions and 8 deletions

View File

@@ -199,7 +199,7 @@ glm_quat_normalize_to(versor q, versor dest) {
float dot;
x0 = glmm_load(q);
xdot = glm_simd_dot(x0, x0);
xdot = glmm_dot(x0, x0);
dot = _mm_cvtss_f32(xdot);
if (dot <= 0.0f) {