Files
oak-editor/app/render/backend/audio/audiobackend.cpp
T
itsmattkc 7a6dd02e5b furthered development of audio renderers
Mostly reimplementing functions from other workers to produce audio samples
2019-11-11 11:35:01 +09:00

29 lines
483 B
C++

#include "audiobackend.h"
AudioBackend::AudioBackend(QObject *parent) :
AudioRenderBackend(parent)
{
}
bool AudioBackend::InitInternal()
{
// This backend doesn't init anything yet
return true;
}
void AudioBackend::CloseInternal()
{
// This backend doesn't init anything yet
}
bool AudioBackend::CompileInternal()
{
// This backend doesn't compile anything yet
return true;
}
void AudioBackend::DecompileInternal()
{
// This backend doesn't compile anything yet
}