diff options
author | Chris Robinson <[email protected]> | 2023-04-04 10:15:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-04-04 10:15:54 -0700 |
commit | 9062721fa84322d794e9676974ad1a3e82913b91 (patch) | |
tree | fcaa5a57eca644c66ee6802a19e0614be8d12c0e /alc/effects/chorus.cpp | |
parent | 2c82778f93a2104632702b04bf6f1c6a15c53612 (diff) |
Simplify effect state buffer handling some
Diffstat (limited to 'alc/effects/chorus.cpp')
-rw-r--r-- | alc/effects/chorus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/chorus.cpp b/alc/effects/chorus.cpp index 4997a448..10ccf9f6 100644 --- a/alc/effects/chorus.cpp +++ b/alc/effects/chorus.cpp @@ -78,7 +78,7 @@ struct ChorusState final : public EffectState { void calcTriangleDelays(const size_t todo); void calcSinusoidDelays(const size_t todo); - void deviceUpdate(const DeviceBase *device, const Buffer &buffer) override; + void deviceUpdate(const DeviceBase *device, const BufferStorage *buffer) override; void update(const ContextBase *context, const EffectSlot *slot, const EffectProps *props, const EffectTarget target) override; void process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, @@ -87,7 +87,7 @@ struct ChorusState final : public EffectState { DEF_NEWDEL(ChorusState) }; -void ChorusState::deviceUpdate(const DeviceBase *Device, const Buffer&) +void ChorusState::deviceUpdate(const DeviceBase *Device, const BufferStorage*) { constexpr float max_delay{maxf(ChorusMaxDelay, FlangerMaxDelay)}; |