Use AudioMatrixSSE(+sse2neon) on arm64

This commit is contained in:
2021-04-18 11:59:34 -04:00
parent 09b788d20b
commit e23eedb338
5 changed files with 6304 additions and 5 deletions

View File

@@ -7,8 +7,11 @@
#include "boo/audiodev/IAudioVoice.hpp"
#if __SSE__
#if defined(__x86_64__) || defined(_M_AMD64)
#include <immintrin.h>
#elif defined(__aarch64__) || defined(_M_ARM64)
#define __SSE__ 1
#include "sse2neon.h"
#endif
namespace boo {