aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorkcat <[email protected]>2018-03-08 17:47:32 -0800
committerGitHub <[email protected]>2018-03-08 17:47:32 -0800
commit5133fe5115ed3102e37a3f537cb63f90ae0ea5ab (patch)
treef2b38fb93b90495eadcf144877b616f0d88bd064 /Alc/ALc.c
parent179e1c4dbc143c9df50676ce538f628690799cd3 (diff)
parent2eb29d538b0e90a48f45f55eaf110fa114b17f35 (diff)
Merge pull request #175 from jhasse/sdl2-backend
Add SDL2 backend for playback, fix #173
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 0cde449e..c72a1833 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -100,6 +100,9 @@ static struct BackendInfo BackendList[] = {
#ifdef HAVE_OPENSL
{ "opensl", ALCopenslBackendFactory_getFactory },
#endif
+#ifdef HAVE_SDL2
+ { "sdl2", ALCsdl2BackendFactory_getFactory },
+#endif
{ "null", ALCnullBackendFactory_getFactory },
#ifdef HAVE_WAVE