mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Android fix.
This commit is contained in:
parent
f68713f704
commit
28fa04a5f4
1 changed files with 8 additions and 0 deletions
|
|
@ -328,10 +328,18 @@ void JUCE_CALLTYPE FloatVectorOperations::findMinAndMax (const float* src, int n
|
|||
|
||||
float JUCE_CALLTYPE FloatVectorOperations::findMinimum (const float* src, int num) noexcept
|
||||
{
|
||||
#if JUCE_USE_SSE_INTRINSICS
|
||||
return FloatVectorHelpers::findMinimumOrMaximum (src, num, true);
|
||||
#else
|
||||
return juce::findMinimum (src, num);
|
||||
#endif
|
||||
}
|
||||
|
||||
float JUCE_CALLTYPE FloatVectorOperations::findMaximum (const float* src, int num) noexcept
|
||||
{
|
||||
#if JUCE_USE_SSE_INTRINSICS
|
||||
return FloatVectorHelpers::findMinimumOrMaximum (src, num, false);
|
||||
#else
|
||||
return juce::findMaximum (src, num);
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue