diff options
author | Chris Robinson <[email protected]> | 2012-09-09 00:53:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-09 00:53:54 -0700 |
commit | f56dddfa735d5a085bce737fb417ae233049e7d8 (patch) | |
tree | 051f20fc4deda1372820f7fbeabf3bd63e11b904 /Alc/mixer_neon.c | |
parent | 2bf1979d4a805e661bdd43258a5020c96cda1f80 (diff) |
Implement MixDirect_SSE separately from the C and Neon versions
Diffstat (limited to 'Alc/mixer_neon.c')
-rw-r--r-- | Alc/mixer_neon.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Alc/mixer_neon.c b/Alc/mixer_neon.c index 4824c597..f7a9fed5 100644 --- a/Alc/mixer_neon.c +++ b/Alc/mixer_neon.c @@ -54,14 +54,6 @@ static __inline void ApplyCoeffs(ALuint Offset, ALfloat (*RESTRICT Values)[2], } -static __inline void ApplyValue(ALfloat *RESTRICT Output, ALfloat value, const ALfloat *DrySend) -{ - ALuint c; - for(c = 0;c < MaxChannels;c++) - Output[c] += value*DrySend[c]; -} - - #define SUFFIX Neon #include "mixer_inc.c" #undef SUFFIX |