aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2007-12-17 18:01:01 -0800
committerChris Robinson <[email protected]>2007-12-17 18:01:01 -0800
commitbe50a5f992a32da16218f4c4dcf9f78e0ce847a6 (patch)
tree90055b2ef0b1d426e2fc31ad7d9de3ee25437ab6 /Alc
parent7086f5f84cdb6cb7895847e8b05dfa432b55db7a (diff)
Export ALC_EXT_EFX extension
Preliminary testing can now begin. Almost nothing will work, but the bare framework is laid out, and the functions can begin to be implemented.
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 80a5a35f..f8cf5232 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -86,6 +86,7 @@ static ALCextension alcExtensions[] = {
{ "ALC_ENUMERATE_ALL_EXT", (ALvoid *) NULL },
{ "ALC_ENUMERATION_EXT", (ALvoid *) NULL },
{ "ALC_EXT_CAPTURE", (ALvoid *) NULL },
+ { "ALC_EXT_EFX", (ALvoid *) NULL },
{ NULL, (ALvoid *) NULL }
};
@@ -170,7 +171,7 @@ static ALCchar *alcDefaultAllDeviceSpecifier = alcAllDeviceList;
static ALCchar *alcCaptureDefaultDeviceSpecifier = alcCaptureDeviceList;
-static ALCchar alcExtensionList[] = "ALC_ENUMERATE_ALL_EXT ALC_ENUMERATION_EXT ALC_EXT_CAPTURE";
+static ALCchar alcExtensionList[] = "ALC_ENUMERATE_ALL_EXT ALC_ENUMERATION_EXT ALC_EXT_CAPTURE ALC_EXT_EFX";
static ALCint alcMajorVersion = 1;
static ALCint alcMinorVersion = 1;