Skip to content

Commit 5b4d743

Browse files
committed
Fix preciseDivision usage
1 parent 02b001f commit 5b4d743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/matrix4SIMD.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ class matrix4SIMD// : public AlignedBase<_NBL_SIMD_ALIGNMENT> don't inherit from
291291
if constexpr (precision == E_MATRIX_INVERSE_PRECISION::EMIP_FAST_RECIPROCAL)
292292
rDetM = vectorSIMDf(1.f, -1.f, -1.f, 1.f)*core::reciprocal(detM);
293293
else if constexpr (precision == E_MATRIX_INVERSE_PRECISION::EMIP_32BIT)
294-
rDetM = vectorSIMDf(1.f, -1.f, -1.f, 1.f)*core::vectorSIMDf::preciseDivision(detM);
294+
rDetM = vectorSIMDf(1.f, -1.f, -1.f, 1.f).preciseDivision(detM);
295295

296296
X_ *= rDetM;
297297
Y_ *= rDetM;

0 commit comments

Comments
 (0)