diff options
author | Chris Robinson <[email protected]> | 2021-12-17 17:13:59 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-12-17 17:13:59 -0800 |
commit | d16b61dffb24cbe90e03e921684cb538cb23e181 (patch) | |
tree | 7e0a363ad68fd21a1f24dfdf08673cb7f6fdb771 /alc/effectslot.cpp | |
parent | fbc42aad7e70131655387c06092f8cbbc286c0db (diff) |
Move the effects base and effectslot to core
Diffstat (limited to 'alc/effectslot.cpp')
-rw-r--r-- | alc/effectslot.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/alc/effectslot.cpp b/alc/effectslot.cpp deleted file mode 100644 index 51fb8d46..00000000 --- a/alc/effectslot.cpp +++ /dev/null @@ -1,25 +0,0 @@ - -#include "config.h" - -#include "effectslot.h" - -#include <stddef.h> - -#include "almalloc.h" -#include "context.h" - - -EffectSlotArray *EffectSlot::CreatePtrArray(size_t count) noexcept -{ - /* Allocate space for twice as many pointers, so the mixer has scratch - * space to store a sorted list during mixing. - */ - void *ptr{al_calloc(alignof(EffectSlotArray), EffectSlotArray::Sizeof(count*2))}; - return al::construct_at(static_cast<EffectSlotArray*>(ptr), count); -} - -EffectSlot::~EffectSlot() -{ - if(mWetBuffer) - mWetBuffer->mInUse = false; -} |