Merge branch 'master' into aabb2d

This commit is contained in:
duarm
2023-11-19 10:00:00 -03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

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)));
#elif defined( __SSE2__ ) || defined( __SSE2__ )
#elif defined( __SSE__ ) || defined( __SSE2__ )
__m128 xdot, x0;
float dot;

View File

@@ -223,7 +223,7 @@ glm_vec4_isvalid(vec4 v) {
CGLM_INLINE
void
glm_vec4_sign(vec4 v, vec4 dest) {
#if defined( __SSE2__ ) || defined( __SSE2__ )
#if defined( __SSE__ ) || defined( __SSE2__ )
__m128 x0, x1, x2, x3, x4;
x0 = glmm_load(v);