diff options
author | Chris Robinson <[email protected]> | 2020-12-26 12:33:00 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-26 12:33:00 -0800 |
commit | 507cbfa0271e6183a06c5b2eec3465bc37a108e5 (patch) | |
tree | edcb87473a70ea6b57ff01a400b1adfd149b9a2f /alc/effects/fshifter.cpp | |
parent | 54719de13235f6ea216e8d200661027c047bd283 (diff) |
Combine EffectState::deviceUpdate with setBuffer
Diffstat (limited to 'alc/effects/fshifter.cpp')
-rw-r--r-- | alc/effects/fshifter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/fshifter.cpp b/alc/effects/fshifter.cpp index 0af77fd8..630b8e1d 100644 --- a/alc/effects/fshifter.cpp +++ b/alc/effects/fshifter.cpp @@ -81,7 +81,7 @@ struct FshifterState final : public EffectState { } mGains[2]; - void deviceUpdate(const ALCdevice *device) override; + void deviceUpdate(const ALCdevice *device, const BufferStorage *buffer) override; void update(const ALCcontext *context, const EffectSlot *slot, const EffectProps *props, const EffectTarget target) override; void process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, @@ -90,7 +90,7 @@ struct FshifterState final : public EffectState { DEF_NEWDEL(FshifterState) }; -void FshifterState::deviceUpdate(const ALCdevice*) +void FshifterState::deviceUpdate(const ALCdevice*, const BufferStorage*) { /* (Re-)initializing parameters and clear the buffers. */ mCount = FIFO_LATENCY; |