1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added support for NEON vector instructions, and some unit-tests for FloatVectorOperations.

This commit is contained in:
jules 2013-12-02 11:25:35 +00:00
parent 53cbc74986
commit e53235741f
3 changed files with 350 additions and 81 deletions

View file

@ -58,6 +58,11 @@
#undef JUCE_USE_VDSP_FRAMEWORK
#endif
#if __ARM_NEON__ && ! (JUCE_USE_VDSP_FRAMEWORK || defined (JUCE_USE_ARM_NEON))
#define JUCE_USE_ARM_NEON 1
#include <arm_neon.h>
#endif
namespace juce
{