You've already forked openal-soft
mirror of
https://github.com/OldUnreal/openal-soft.git
synced 2026-04-02 21:38:01 -07:00
21 lines
383 B
C++
21 lines
383 B
C++
|
|
#include "config.h"
|
|
|
|
#include "bformatdec.h"
|
|
#include "bs2b.h"
|
|
#include "device.h"
|
|
#include "front_stablizer.h"
|
|
#include "hrtf.h"
|
|
#include "mastering.h"
|
|
|
|
|
|
static_assert(std::atomic<std::chrono::nanoseconds>::is_always_lock_free);
|
|
|
|
|
|
DeviceBase::DeviceBase(DeviceType type)
|
|
: Type{type}, mContexts{al::FlexArray<ContextBase*>::Create(0)}
|
|
{
|
|
}
|
|
|
|
DeviceBase::~DeviceBase() = default;
|