aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/null.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-04-04 10:15:54 -0700
committerChris Robinson <[email protected]>2023-04-04 10:15:54 -0700
commit9062721fa84322d794e9676974ad1a3e82913b91 (patch)
treefcaa5a57eca644c66ee6802a19e0614be8d12c0e /alc/effects/null.cpp
parent2c82778f93a2104632702b04bf6f1c6a15c53612 (diff)
Simplify effect state buffer handling some
Diffstat (limited to 'alc/effects/null.cpp')
-rw-r--r--alc/effects/null.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/null.cpp b/alc/effects/null.cpp
index cda1420e..1f9ae67b 100644
--- a/alc/effects/null.cpp
+++ b/alc/effects/null.cpp
@@ -20,7 +20,7 @@ struct NullState final : public EffectState {
NullState();
~NullState() override;
- 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,
@@ -44,7 +44,7 @@ NullState::~NullState() = default;
* format) have been changed. Will always be followed by a call to the update
* method, if successful.
*/
-void NullState::deviceUpdate(const DeviceBase* /*device*/, const Buffer& /*buffer*/)
+void NullState::deviceUpdate(const DeviceBase* /*device*/, const BufferStorage* /*buffer*/)
{
}