diff options
author | Chris Robinson <[email protected]> | 2016-09-02 00:29:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-09-02 00:29:46 -0700 |
commit | cf0ef500ec6e999e744d4ad54e26e0c74c8c53b9 (patch) | |
tree | 3dee3d4aafe88b0a5cc5f87ae57ec14bee491014 /OpenAL32/Include/alu.h | |
parent | 17636a0c1c6cc7916d2b3f659b5a701266bcab36 (diff) |
Rename MatrixMixerFunc to RowMixerFunc
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 70ce7059..9a92dc50 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -160,9 +160,9 @@ typedef const ALfloat* (*ResamplerFunc)(const BsincState *state, typedef void (*MixerFunc)(const ALfloat *data, ALuint OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE], struct MixGains *Gains, ALuint Counter, ALuint OutPos, ALuint BufferSize); -typedef void (*MatrixMixerFunc)(ALfloat *OutBuffer, const ALfloat *Mtx, - ALfloat (*restrict data)[BUFFERSIZE], ALuint InChans, - ALuint BufferSize); +typedef void (*RowMixerFunc)(ALfloat *OutBuffer, const ALfloat *gains, + ALfloat (*restrict data)[BUFFERSIZE], ALuint InChans, + ALuint BufferSize); typedef void (*HrtfMixerFunc)(ALfloat (*restrict OutBuffer)[BUFFERSIZE], ALuint lidx, ALuint ridx, const ALfloat *data, ALuint Counter, ALuint Offset, ALuint OutPos, const ALuint IrSize, const MixHrtfParams *hrtfparams, |