diff options
author | Chris Robinson <[email protected]> | 2011-10-04 09:55:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-10-04 09:55:36 -0700 |
commit | eb277cc57835d246400f724c1050cc0724e31af6 (patch) | |
tree | 97e8997e10aee3872c4763dcf0c0b32839309617 /OpenAL32 | |
parent | 20fd648729579a37e138fe2c018d075fa4e23a53 (diff) |
Remove some unneeded templates and parameters
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 b3288471..814b5034 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -233,8 +233,8 @@ ALint aluCart2LUTpos(ALfloat re, ALfloat im); ALvoid CalcSourceParams(struct ALsource *ALSource, const ALCcontext *ALContext); ALvoid CalcNonAttnSourceParams(struct ALsource *ALSource, const ALCcontext *ALContext); -MixerFunc SelectMixer(struct ALbuffer *Buffer, enum Resampler Resampler); -MixerFunc SelectHrtfMixer(struct ALbuffer *Buffer, enum Resampler Resampler); +MixerFunc SelectMixer(enum Resampler Resampler); +MixerFunc SelectHrtfMixer(enum Resampler Resampler); ALvoid MixSource(struct ALsource *Source, ALCdevice *Device, ALuint SamplesToDo); |