blob: fc63604ed21d0d55d26069b99827e6c7f9bb7a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/** Specify if ALC_ENUMERATION_EXT is present */
public boolean alcEnumerationExtIsPresent();
/** Specify if ALC_ENUMERATE_ALL_EXT is present */
public boolean alcEnumerateAllExtIsPresent();
/** Specify if ALC_SOFT_system_events is present */
public boolean alcSoftSystemEventsIsPresent();
/** Specify if call of alGetString(device, param) must
must retrun a double null terminted string */
public boolean alcIsDoubleNullTerminatedString(final com.jogamp.openal.ALCdevice device, final int param);
/** Fetches all values of device and param supplied from result of call to alcGetString
Each value is extracted from string because is a string double null terminated
Equivalent to the C call alcGetString(device, param). */
public java.lang.String[] alcGetStringAsDoubleNullTerminatedString(final com.jogamp.openal.ALCdevice device, final int param);
/** Fetches the names of the available ALC device specifiers.
Equivalent to the C call alcGetString(NULL, ALC_DEVICE_SPECIFIER). */
public java.lang.String[] alcGetDeviceSpecifiers();
/** Fetches the names of the available ALC capture device specifiers.
Equivalent to the C call alcGetString(NULL, ALC_CAPTURE_DEVICE_SPECIFIER). */
public java.lang.String[] alcGetCaptureDeviceSpecifiers();
/** Fetches the names of the available ALC all capture device specifiers.
Equivalent to the C call alcGetString(NULL, ALC_ALL_DEVICES_SPECIFIER). */
public java.lang.String[] alcGetAllDeviceSpecifiers();
|