diff options
author | Chris Robinson <[email protected]> | 2019-05-29 22:31:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-29 22:31:36 -0700 |
commit | 2909f263fd1a2e7122b0345c6d11209084815fd1 (patch) | |
tree | 43fc5530d46f50edd7e5ca95f9c2d3dd4c95d3fc /Alc/effects/base.h | |
parent | 893ffe9a84d497d38e6e472b0cffbd9c37e0c366 (diff) |
Use span<FloatBufferLine> for EffectState::process output
Diffstat (limited to 'Alc/effects/base.h')
-rw-r--r-- | Alc/effects/base.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/effects/base.h b/Alc/effects/base.h index c7c6f1c0..d2b33b9b 100644 --- a/Alc/effects/base.h +++ b/Alc/effects/base.h @@ -4,6 +4,7 @@ #include "alMain.h" #include "almalloc.h" +#include "alspan.h" #include "atomic.h" @@ -151,7 +152,7 @@ struct EffectState { virtual ALboolean deviceUpdate(const ALCdevice *device) = 0; virtual void update(const ALCcontext *context, const ALeffectslot *slot, const EffectProps *props, const EffectTarget target) = 0; - virtual void process(const ALsizei samplesToDo, const FloatBufferLine *RESTRICT samplesIn, const ALsizei numInput, FloatBufferLine *RESTRICT samplesOut, const ALsizei numOutput) = 0; + virtual void process(const ALsizei samplesToDo, const FloatBufferLine *RESTRICT samplesIn, const ALsizei numInput, const al::span<FloatBufferLine> samplesOut) = 0; void IncRef() noexcept; void DecRef() noexcept; |