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_c.c | |
parent | 2bf1979d4a805e661bdd43258a5020c96cda1f80 (diff) |
Implement MixDirect_SSE separately from the C and Neon versions
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r-- | Alc/mixer_c.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c index 5cb5acb4..aecf03a5 100644 --- a/Alc/mixer_c.c +++ b/Alc/mixer_c.c @@ -36,14 +36,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 C #include "mixer_inc.c" #undef SUFFIX |