mirror of
https://github.com/recp/cglm.git
synced 2025-10-03 16:51:35 +00:00
fix glmm_fmsub() on arm-neon
This commit is contained in:
@@ -177,7 +177,7 @@ glmm_fmsub(float32x4_t a, float32x4_t b, float32x4_t c) {
|
|||||||
#if CGLM_ARM64
|
#if CGLM_ARM64
|
||||||
return vfmsq_f32(c, a, b);
|
return vfmsq_f32(c, a, b);
|
||||||
#else
|
#else
|
||||||
return vmlsq_f32(c, a, b);
|
return vmlsq_f32(vnegq_f32(c), a, b);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user