12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef _AKSIMD_PLATFORM_H_
- #define _AKSIMD_PLATFORM_H_
- #include <AK/SoundEngine/Common/AkTypes.h>
- #ifdef AK_CPU_ARM_NEON
- #define AK_IOS_ARM_NEON
- #include <AK/SoundEngine/Platforms/arm_neon/AkSimd.h>
- #elif defined AK_CPU_X86_64 || defined AK_CPU_X86
- #include <AK/SoundEngine/Platforms/SSE/AkSimd.h>
- #else
- #include <AK/SoundEngine/Platforms/Generic/AkSimd.h>
- #endif
- #endif
|