simd128: fix a const in glm_mat4_inv_fast_wasm

making it the same as glm_mat4_inv_wasm, does not make any difference in tests
This commit is contained in:
myfreeer
2023-03-19 16:35:56 +08:00
parent be76d96e8f
commit e62b782039

View File

@@ -166,7 +166,7 @@ glm_mat4_inv_fast_wasm(mat4 mat, mat4 dest) {
t0, t1, t2, t3, t4, t5,
x0, x1, x2, x3, x4, x5, x6, x7, x8, x9;
x8 = wasm_f32x4_const(-0.f, 0.f, -0.f, 0.f);
x8 = wasm_f32x4_const(0.f, -0.f, 0.f, -0.f);
x9 = glmm_shuff1(x8, 2, 1, 2, 1);
/* 127 <- 0 */