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/distortion.cpp | |
parent | 2c82778f93a2104632702b04bf6f1c6a15c53612 (diff) |
Simplify effect state buffer handling some
Diffstat (limited to 'alc/effects/distortion.cpp')
-rw-r--r-- | alc/effects/distortion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/distortion.cpp b/alc/effects/distortion.cpp index 5e277619..b4e2167e 100644 --- a/alc/effects/distortion.cpp +++ b/alc/effects/distortion.cpp @@ -56,7 +56,7 @@ struct DistortionState final : public EffectState { alignas(16) float mBuffer[2][BufferLineSize]{}; - 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, @@ -65,7 +65,7 @@ struct DistortionState final : public EffectState { DEF_NEWDEL(DistortionState) }; -void DistortionState::deviceUpdate(const DeviceBase*, const Buffer&) +void DistortionState::deviceUpdate(const DeviceBase*, const BufferStorage*) { mLowpass.clear(); mBandpass.clear(); |