aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-12 04:41:42 -0700
committerChris Robinson <[email protected]>2011-06-12 04:41:42 -0700
commitba069ded407339c319c06bd21f924a103860d764 (patch)
tree7a032d2acca54729ffa4baf7ea019a286646a677 /Alc/ALc.c
parent6b8209fdc9d31dd902eca93d2184cd55513d7b50 (diff)
Add an OpenSL backend
Currently for Android's OpenSL ES implementation
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 1438694e..fb8cabd0 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -97,6 +97,9 @@ static BackendInfo BackendList[] = {
#ifdef HAVE_PORTAUDIO
{ "port", alc_pa_init, alc_pa_deinit, alc_pa_probe, EmptyFuncs },
#endif
+#ifdef HAVE_OPENSL
+ { "opensl", alc_opensl_init, alc_opensl_deinit, alc_opensl_probe, EmptyFuncs },
+#endif
{ "null", alc_null_init, alc_null_deinit, alc_null_probe, EmptyFuncs },
#ifdef HAVE_WAVE