diff options
author | Chris Robinson <[email protected]> | 2014-05-18 07:54:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-18 08:59:10 -0700 |
commit | 29b5dae6aa010224b2fd428530e1cd67d6d92e1a (patch) | |
tree | 544b4c9d9d82ad3e0e050aa12ad7dcd71101ff38 /OpenAL32/Include/alu.h | |
parent | bd2721dc7a2bd3376e01ff32c18737a6fa38ff42 (diff) |
Pass some DirectParams as function parameters
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index a3749ea1..4354c76e 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -116,8 +116,9 @@ typedef void (*ResamplerFunc)(const ALfloat *src, ALuint frac, ALuint increment, ALfloat *restrict dst, ALuint dstlen); typedef ALvoid (*DryMixerFunc)(struct DirectParams *params, - const ALfloat *restrict data, ALuint srcchan, - ALuint OutPos, ALuint BufferSize); + ALfloat (*restrict OutBuffer)[BUFFERSIZE], + const ALfloat *restrict data, ALuint Counter, + ALuint srcchan, ALuint OutPos, ALuint BufferSize); typedef ALvoid (*WetMixerFunc)(struct SendParams *params, const ALfloat *restrict data, ALuint OutPos, ALuint BufferSize); |