diff options
author | Chris Robinson <[email protected]> | 2011-03-12 20:11:25 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-03-12 20:11:25 -0800 |
commit | 73123bc313fd0f700abc8569138081abca997b78 (patch) | |
tree | b438e53a2ed62f8b6391793aaf36297da0ad8b27 /Alc/ALc.c | |
parent | 947aa1342c82fe22b2030b04e43532af0a07d978 (diff) |
Add support for ALC_EXT_DEDICATED
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -331,7 +331,8 @@ static const ALCchar alcNoDeviceExtList[] = "ALC_EXT_thread_local_context"; static const ALCchar alcExtensionList[] = "ALC_ENUMERATE_ALL_EXT ALC_ENUMERATION_EXT ALC_EXT_CAPTURE " - "ALC_EXT_disconnect ALC_EXT_EFX ALC_EXT_thread_local_context"; + "ALC_EXT_DEDICATED ALC_EXT_disconnect ALC_EXT_EFX " + "ALC_EXT_thread_local_context"; static const ALCint alcMajorVersion = 1; static const ALCint alcMinorVersion = 1; @@ -514,6 +515,7 @@ static void alc_init(void) { "reverb", REVERB }, { "echo", ECHO }, { "modulator", MODULATOR }, + { "dedicated", DEDICATED }, { NULL, 0 } }; int n; |