diff options
author | Chris Robinson <[email protected]> | 2014-05-18 11:05:38 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-18 11:05:38 -0700 |
commit | ef9dfe3772b7dd8db641ca841eb3704b23f9ac7e (patch) | |
tree | 55c36b74a0a74e4c574784240ef53122c78bf5db /Alc/mixer_inc.c | |
parent | 9317ec59b99af1b598de1c302470113a77da966d (diff) |
Move an HRTF mixer parameter and shorten a couple variable names
Diffstat (limited to 'Alc/mixer_inc.c')
-rw-r--r-- | Alc/mixer_inc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Alc/mixer_inc.c b/Alc/mixer_inc.c index f22190d8..7c90ae9c 100644 --- a/Alc/mixer_inc.c +++ b/Alc/mixer_inc.c @@ -26,9 +26,8 @@ static inline void ApplyCoeffs(ALuint Offset, ALfloat (*restrict Values)[2], void MixDirect_Hrtf(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data, - ALuint Counter, ALuint Offset, const ALuint IrSize, - const HrtfParams *hrtfparams, HrtfState *hrtfstate, - ALuint OutPos, ALuint BufferSize) + ALuint Counter, ALuint Offset, ALuint OutPos, const ALuint IrSize, + const HrtfParams *hrtfparams, HrtfState *hrtfstate, ALuint BufferSize) { alignas(16) ALfloat Coeffs[HRIR_LENGTH][2]; ALuint Delay[2]; |