diff options
author | Chris Robinson <[email protected]> | 2015-08-15 01:37:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-08-15 01:37:46 -0700 |
commit | d5ab883da21499a14bf86a1aa7f0ad894becb1c5 (patch) | |
tree | 1a57fd3390d5bdf28d064687fb32d3cf0a51b9bd /Alc/mixer_neon.c | |
parent | f6e52debb5106dcc6ff99fe005da4501fd56522d (diff) |
Define MixHrtf directly instead of through a SUFFIX macro
Diffstat (limited to 'Alc/mixer_neon.c')
-rw-r--r-- | Alc/mixer_neon.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Alc/mixer_neon.c b/Alc/mixer_neon.c index 8f79186d..9ee76850 100644 --- a/Alc/mixer_neon.c +++ b/Alc/mixer_neon.c @@ -88,10 +88,9 @@ static inline void ApplyCoeffs(ALuint Offset, ALfloat (*restrict Values)[2], } } - -#define SUFFIX Neon +#define MixHrtf MixHrtf_Neon #include "mixer_inc.c" -#undef SUFFIX +#undef MixHrtf void Mix_Neon(const ALfloat *data, ALuint OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE], |