would be useful to have those :
/** Converts a stream of doubles to float. */
void FloatVectorOperations::convert (float* dest, const double* src, int num) noexcept
{
#if JUCE_USE_VDSP_FRAMEWORK
vDSP_vdpsp (src, 1, dest, 1, (vDSP_Length) num);
#else
?
#endif
}
/** Converts a stream of floats to doubles. */
void FloatVectorOperations::convert (double* dest, const float* src, int num) noexcept
{
#if JUCE_USE_VDSP_FRAMEWORK
vDSP_vspdp (src, 1, dest, 1, (vDSP_Length) num);
#else
?
#endif
}
