simd128: code style

This commit is contained in:
myfreeer
2023-04-01 19:38:28 +08:00
parent 73adfe08c0
commit 51ce4db82e
8 changed files with 36 additions and 36 deletions

View File

@@ -262,7 +262,7 @@ glm_quat_normalize_to(versor q, versor dest) {
x0 = glmm_load(q);
xdot = glmm_vdot(x0, x0);
// dot = _mm_cvtss_f32(xdot);
/* dot = _mm_cvtss_f32(xdot); */
dot = wasm_f32x4_extract_lane(xdot, 0);
if (dot <= 0.0f) {