From a14383d6ccd3f5e373ed3576c8fd2adce27a4597 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 15 Oct 2012 01:31:58 -0700 Subject: Constify the direct and send parameters given to the mixer --- OpenAL32/Include/alu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenAL32/Include') 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); -- cgit v1.2.3