diff options
author | Chris Robinson <[email protected]> | 2014-01-26 01:34:39 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-01-26 01:34:39 -0800 |
commit | a4bc0a46e9e0fe001d4c14909b47ed4ac8d81960 (patch) | |
tree | a0ba33c23b3ceeb36e44f3d0212091398da6bcf3 /Alc/mixer_defs.h | |
parent | 49baa9128dd98e986639def4f24c7522d9ec6b56 (diff) |
Implement dry and wet mixers for Neon
Code provided by Philippe Simons <[email protected]>.
Diffstat (limited to 'Alc/mixer_defs.h')
-rw-r--r-- | Alc/mixer_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Alc/mixer_defs.h b/Alc/mixer_defs.h index 5e43af15..f8968a0a 100644 --- a/Alc/mixer_defs.h +++ b/Alc/mixer_defs.h @@ -27,5 +27,7 @@ void MixSend_SSE(const struct SendParams*,const ALfloat*restrict,ALuint,ALuint,A /* Neon mixers */ void MixDirect_Hrtf_Neon(const struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint,ALuint); +void MixDirect_Neon(const struct DirectParams*,const ALfloat*restrict,ALuint,ALuint,ALuint,ALuint); +void MixSend_Neon(const struct SendParams*,const ALfloat*restrict,ALuint,ALuint,ALuint); #endif /* MIXER_DEFS_H */ |