diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2020-04-18 15:17:53 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2020-04-18 15:17:53 -0700 |
commit | 67e54a26697f5e898f5b0e040f18281a28c16023 (patch) | |
tree | 2209f07479fea9c4787032cd79d693dee746687c /alc/alc.cpp | |
parent | a1e5f4eb8374e46348146ee19a031e446a65bade (diff) |
Add an Oboe backend stub
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index e8c23476..d0d8510b 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -116,6 +116,9 @@ #ifdef HAVE_OPENSL #include "backends/opensl.h" #endif +#ifdef HAVE_OBOE +#include "backends/oboe.h" +#endif #ifdef HAVE_SOLARIS #include "backends/solaris.h" #endif @@ -173,6 +176,9 @@ BackendInfo BackendList[] = { #ifdef HAVE_COREAUDIO { "core", CoreAudioBackendFactory::getFactory }, #endif +#ifdef HAVE_OBOE + { "oboe", OboeBackendFactory::getFactory }, +#endif #ifdef HAVE_OPENSL { "opensl", OSLBackendFactory::getFactory }, #endif |