diff options
author | Chris Robinson <[email protected]> | 2019-08-18 03:55:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-18 15:15:56 -0700 |
commit | 4f4ef3a41015cfc499afc1d3101f2e99d29ebb9e (patch) | |
tree | e89de9b09cb3afc9a6d3eee427b57873259502a5 /alc/alu.h | |
parent | 6750907bddc96e8552f16c6ba88ddcc18d4d9236 (diff) |
Don't require MixRow's output to be a FloatBufferLine
Diffstat (limited to 'alc/alu.h')
-rw-r--r-- | alc/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -317,7 +317,7 @@ struct ALvoice { using MixerFunc = void(*)(const ALfloat *data, const al::span<FloatBufferLine> OutBuffer, ALfloat *CurrentGains, const ALfloat *TargetGains, const ALsizei Counter, const ALsizei OutPos, const ALsizei BufferSize); -using RowMixerFunc = void(*)(FloatBufferLine &OutBuffer, const ALfloat *gains, +using RowMixerFunc = void(*)(ALfloat *OutBuffer, const ALfloat *gains, const al::span<const FloatBufferLine> InSamples, const ALsizei InPos, const ALsizei BufferSize); using HrtfMixerFunc = void(*)(FloatBufferLine &LeftOut, FloatBufferLine &RightOut, |