From 67e54a26697f5e898f5b0e040f18281a28c16023 Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Sat, 18 Apr 2020 15:17:53 -0700
Subject: Add an Oboe backend stub

---
 alc/alc.cpp | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'alc/alc.cpp')

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
-- 
cgit v1.2.3