We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cf9c42 commit 61e0078Copy full SHA for 61e0078
src/lib/libopenal.js
@@ -25,6 +25,7 @@ var LibraryOpenAL = {
25
26
ALC_EXTENSIONS: {
27
// TODO: 'ALC_EXT_EFX': true,
28
+ 'ALC_EXT_capture': true,
29
'ALC_SOFT_pause_device': true,
30
'ALC_SOFT_HRTF': true
31
},
test/openal/test_openal_extensions.c
@@ -17,8 +17,9 @@
17
#include <AL/alc.h>
18
#include <AL/alext.h>
19
20
-#define NUM_ALC_EXTENSIONS 2
+#define NUM_ALC_EXTENSIONS 3
21
static const ALCchar *alc_extensions[NUM_ALC_EXTENSIONS] = {
22
+ "ALC_EXT_capture",
23
"ALC_SOFT_pause_device",
24
"ALC_SOFT_HRTF",
};
0 commit comments