mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 12:32:40 +00:00
swapped argument order in glmm_store3() (#102)
close https://github.com/recp/cglm/issues/101
This commit is contained in:
committed by
Recep Aslantas
parent
144624962a
commit
1d804781de
@@ -133,7 +133,7 @@ glmm_load3(float v[3]) {
|
||||
|
||||
static inline
|
||||
void
|
||||
glmm_store3(__m128 vx, float v[3]) {
|
||||
glmm_store3(float v[3], __m128 vx) {
|
||||
_mm_storel_pi((__m64 *)&v[0], vx);
|
||||
_mm_store_ss(&v[2], glmm_shuff1(vx, 2, 2, 2, 2));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user