mirror of
https://github.com/g-truc/glm.git
synced 2024-11-26 18:24:35 +00:00
Fixed ticket 169, parameter not used for mat division
This commit is contained in:
parent
edccfa24b9
commit
8537e33b8d
@ -157,7 +157,7 @@ GLM_FUNC_QUALIFIER fmat4x4SIMD & fmat4x4SIMD::operator/=
|
||||
)
|
||||
{
|
||||
__m128 Inv[4];
|
||||
sse_inverse_ps(&this->Data[0].Data, Inv);
|
||||
sse_inverse_ps(&m.Data[0].Data, Inv);
|
||||
sse_mul_ps(&this->Data[0].Data, Inv, &this->Data[0].Data);
|
||||
return *this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user