diff options
author | Chris Robinson <[email protected]> | 2014-03-23 02:45:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-23 02:45:50 -0700 |
commit | b0d511a8609cd2f3c10fd5b65603211a14c8141e (patch) | |
tree | ed50d56b16a3450f36ee21332b5b6df052693a56 /Alc/mixer_sse.c | |
parent | cc599333a8100dd3b8e52ef018e01d4e184c1532 (diff) |
Store the HrtfState directly in the DirectParams
Diffstat (limited to 'Alc/mixer_sse.c')
-rw-r--r-- | Alc/mixer_sse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/mixer_sse.c b/Alc/mixer_sse.c index 9b04e8b5..c9296d3d 100644 --- a/Alc/mixer_sse.c +++ b/Alc/mixer_sse.c @@ -140,7 +140,7 @@ static inline void ApplyCoeffs(ALuint Offset, ALfloat (*restrict Values)[2], #undef SUFFIX -void MixDirect_SSE(const DirectParams *params, const ALfloat *restrict data, ALuint srcchan, +void MixDirect_SSE(DirectParams *params, const ALfloat *restrict data, ALuint srcchan, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize) { ALfloat (*restrict OutBuffer)[BUFFERSIZE] = params->OutBuffer; @@ -177,7 +177,7 @@ void MixDirect_SSE(const DirectParams *params, const ALfloat *restrict data, ALu } -void MixSend_SSE(const SendParams *params, const ALfloat *restrict data, +void MixSend_SSE(SendParams *params, const ALfloat *restrict data, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize) { ALfloat (*restrict OutBuffer)[BUFFERSIZE] = params->OutBuffer; |