Use vsqrtf instead of _mm_sqrt_ps

This commit is contained in:
heckflosse
2018-11-05 16:02:32 +01:00
parent 0983817434
commit 8a31f0368c
4 changed files with 6 additions and 6 deletions

View File

@@ -4407,7 +4407,7 @@ void ImProcFunctions::chromiLuminanceCurve (PipetteBuffer *pipetteBuffer, int pW
av = LVFU (lold->a[i][k]);
bv = LVFU (lold->b[i][k]);
STVF (HHBuffer[k], xatan2f (bv, av));
STVF (CCBuffer[k], _mm_sqrt_ps (SQRV (av) + SQRV (bv)) / c327d68v);
STVF (CCBuffer[k], vsqrtf (SQRV (av) + SQRV (bv)) / c327d68v);
}
for (; k < W; k++) {