diff options
author | Chris Robinson <[email protected]> | 2017-04-12 22:44:16 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-12 22:44:16 -0700 |
commit | 684823ebc4c65957d85b79f0d8ac8b2afe9160bb (patch) | |
tree | 3b3ed74ddbf02f07920f8f35f9a514694c991888 | |
parent | 901804d724d49f316cd2bf51ec1cd2cd9fb9eb91 (diff) |
Select NEON when available before SSE
-rw-r--r-- | Alc/ALu.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -102,14 +102,14 @@ const aluMatrixf IdentityMatrixf = {{ static inline HrtfDirectMixerFunc SelectHrtfMixer(void) { -#ifdef HAVE_SSE - if((CPUCapFlags&CPU_CAP_SSE)) - return MixDirectHrtf_SSE; -#endif #ifdef HAVE_NEON if((CPUCapFlags&CPU_CAP_NEON)) return MixDirectHrtf_Neon; #endif +#ifdef HAVE_SSE + if((CPUCapFlags&CPU_CAP_SSE)) + return MixDirectHrtf_SSE; +#endif return MixDirectHrtf_C; } |