mirror of https://github.com/axmolengine/axmol.git
24 lines
476 B
C++
24 lines
476 B
C++
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#include "bformatdec.h"
|
||
|
#include "bs2b.h"
|
||
|
#include "device.h"
|
||
|
#include "front_stablizer.h"
|
||
|
#include "hrtf.h"
|
||
|
#include "mastering.h"
|
||
|
|
||
|
|
||
|
al::FlexArray<ContextBase*> DeviceBase::sEmptyContextArray{0u};
|
||
|
|
||
|
|
||
|
DeviceBase::DeviceBase(DeviceType type) : Type{type}, mContexts{&sEmptyContextArray}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
DeviceBase::~DeviceBase()
|
||
|
{
|
||
|
auto *oldarray = mContexts.exchange(nullptr, std::memory_order_relaxed);
|
||
|
if(oldarray != &sEmptyContextArray) delete oldarray;
|
||
|
}
|