diff options
author | Chris Robinson <[email protected]> | 2014-06-06 01:52:53 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-06-06 07:15:22 -0700 |
commit | 6d1622dc68073e08dff6149280096f8f1d9a0a2e (patch) | |
tree | 8f400ce980a7c191dbab223c0a4268118bdebe15 /Alc/mixer.c | |
parent | fc0be88c0f8d3d8887edd2afac915840f4e3f5e4 (diff) |
Move InitiatePositionArrays to mixer_defs.h
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 8830a3fe..6a4abfc6 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -37,6 +37,9 @@ #include "bs2b.h" +extern inline void InitiatePositionArrays(ALuint frac, ALuint increment, ALuint *frac_arr, ALuint *pos_arr, ALuint size); + + static inline ALfloat Sample_ALbyte(ALbyte val) { return val * (1.0f/127.0f); } |