diff options
author | Chris Robinson <[email protected]> | 2012-09-11 05:24:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-11 05:56:19 -0700 |
commit | 98ff6f990af1ad3159c5d9a2209b7b6de36d2130 (patch) | |
tree | 05a1c609d19ed26961057b6228696ad34c2cec4e /OpenAL32 | |
parent | aaa81e00b75d0df6b83be5d3f6e54227110145ae (diff) |
Do the filtering separately from the mixing
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 94e3dc17..cc18f1a7 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -88,7 +88,7 @@ typedef ALvoid (*DryMixerFunc)(struct ALsource *self, ALCdevice *Device, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize); typedef ALvoid (*WetMixerFunc)(struct SendParams *params, - const ALfloat *RESTRICT data, ALuint srcchan, + const ALfloat *RESTRICT data, ALuint OutPos, ALuint SamplesToDo, ALuint BufferSize); |