diff options
author | Chris Robinson <[email protected]> | 2012-10-15 01:31:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-15 01:31:58 -0700 |
commit | a14383d6ccd3f5e373ed3576c8fd2adce27a4597 (patch) | |
tree | ab6df3a28dd0743f8d06565a41da5d45b4fd56d4 /OpenAL32 | |
parent | fe1903fb56e918cbbcbf66966c75581788fd9d5b (diff) |
Constify the direct and send parameters given to the mixer
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 50692f7a..32ea0047 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -88,11 +88,11 @@ struct SendParams; typedef void (*ResamplerFunc)(const ALfloat *src, ALuint frac, ALuint increment, ALfloat *RESTRICT dst, ALuint dstlen); -typedef ALvoid (*DryMixerFunc)(struct DirectParams *params, +typedef ALvoid (*DryMixerFunc)(const struct DirectParams *params, const ALfloat *RESTRICT data, ALuint srcchan, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize); -typedef ALvoid (*WetMixerFunc)(struct SendParams *params, +typedef ALvoid (*WetMixerFunc)(const struct SendParams *params, const ALfloat *RESTRICT data, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize); |