Merge pull request #356 from havrik/patch-1

Fix definition logic misspell in 'glm_quat_normalize_to' -> cglm/quat.h
This commit is contained in:
Recep Aslantas
2023-11-16 13:05:42 +03:00
committed by GitHub

View File

@@ -258,7 +258,7 @@ glm_quat_normalize_to(versor q, versor dest) {
} }
glmm_store(dest, wasm_f32x4_div(x0, wasm_f32x4_sqrt(xdot))); glmm_store(dest, wasm_f32x4_div(x0, wasm_f32x4_sqrt(xdot)));
#elif defined( __SSE2__ ) || defined( __SSE2__ ) #elif defined( __SSE__ ) || defined( __SSE2__ )
__m128 xdot, x0; __m128 xdot, x0;
float dot; float dot;