|
AL_API ALenum AL_APIENTRY | alGetError () |
| Error support. More...
|
|
AL_API ALboolean AL_APIENTRY | alIsSource (ALuint sid) |
| Verify a handle is a valid Source. More...
|
|
AL_API void AL_APIENTRY | alGenBuffers (ALsizei n, ALuint *buffers) |
| BUFFER Buffer objects are storage space for sample data. More...
|
|
AL_API void AL_APIENTRY | alSourceStop (ALuint sid) |
| Stop a source, temporarily remove it from the mixer list, and reset its internal state to pre-Play. More...
|
|
AL_API void AL_APIENTRY | alGetSourcei (ALuint sid, ALenum pname, ALint *value) |
| Get an integer parameter for a Source object. More...
|
|
AL_API ALint AL_APIENTRY | alGetInteger (ALenum param) |
|
ALC_API void ALC_APIENTRY | alcSuspendContext (ALCcontext *alcHandle) |
|
ALC_API ALCdevice *ALC_APIENTRY | alcOpenDevice (const ALchar *tokstr) |
|
AL_API void AL_APIENTRY | alDeleteBuffers (ALsizei n, const ALuint *buffers) |
|
AL_API ALboolean AL_APIENTRY | alIsExtensionPresent (const ALchar *fname) |
|
AL_API void AL_APIENTRY | alBufferData (ALuint buffer, ALenum format, const ALvoid *data, ALsizei size, ALsizei freq) |
|
ALC_API ALCboolean ALC_APIENTRY | alcMakeContextCurrent (ALCcontext *alcHandle) |
|
ALC_API ALCvoid ALC_APIENTRY | alcProcessContext (ALCcontext *alcHandle) |
|
ALC_API ALCvoid ALC_APIENTRY | alcDestroyContext (ALCcontext *alcHandle) |
|
ALC_API const ALCchar *ALC_APIENTRY | alcGetString (ALCdevice *deviceHandle, ALCenum token) |
|
AL_API void AL_APIENTRY | alBufferData (ALuint buffer, ALenum format, ALvoid *data, ALsizei size, ALsizei freq) |
| Specify the data to be filled into a buffer. More...
|
|
AL_API void AL_APIENTRY | alDeleteBuffers (ALsizei n, ALuint *buffers) |
|
AL_API ALboolean AL_APIENTRY | alIsExtensionPresent (ALubyte *fname) |
| Extension support. More...
|
|
AL_API void AL_APIENTRY | alDeleteSources (ALsizei n, const ALuint *sources) |
|
AL_API ALenum AL_APIENTRY | alGetEnumValue (const ALchar *ename) |
|
AL_API void *AL_APIENTRY | alGetProcAddress (const ALchar *fname) |
|
ALC_API ALCcontext *ALC_APIENTRY | alcCreateContext (ALCdevice *dev, const ALCint *attrlist) |
|
ALC_API ALCdevice *ALC_APIENTRY | alcOpenDevice (ALubyte *tokstr) |
|
AL_API void AL_APIENTRY | alListenerfv (ALenum pname, const ALfloat *param) |
|
AL_API void AL_APIENTRY | alSourceQueueBuffers (ALuint sid, ALsizei numEntries, const ALuint *bids) |
|
AL_API void AL_APIENTRY | alSourcei (ALuint sid, ALenum param, ALint value) |
| Set an integer parameter for a Source object. More...
|
|
AL_API void AL_APIENTRY | alListenerf (ALenum pname, ALfloat param) |
| Listener Gain: default 1.0f. More...
|
|
ALC_API ALCboolean ALC_APIENTRY | alcCloseDevice (ALCdevice *dev) |
|
AL_API ALboolean AL_APIENTRY | alIsBuffer (ALuint buffer) |
|
AL_API void AL_APIENTRY | alSource3f (ALuint sid, ALenum param, ALfloat f1, ALfloat f2, ALfloat f3) |
|
AL_API void AL_APIENTRY | alGenSources (ALsizei n, ALuint *sources) |
| SOURCE Source objects are by default localized. More...
|
|
AL_API void AL_APIENTRY | alSourcef (ALuint sid, ALenum param, ALfloat value) |
|
AL_API void AL_APIENTRY | alSourceUnqueueBuffers (ALuint sid, ALsizei numEntries, ALuint *bids) |
|
AL_API void AL_APIENTRY | alSourcePlay (ALuint sid) |
| Activate a source, start replay. More...
|
|
BUFFER Buffer objects are storage space for sample data.
Buffers are referred to by Sources. There can be more than one Source using the same Buffer data. If Buffers have to be duplicated on a per-Source basis, the driver has to take care of allocation, copying, and deallocation as well as propagating buffer data changes.Buffer object generation.
Definition at line 39 of file stubs.cpp.
AL_API void AL_APIENTRY alSourceStop |
( |
ALuint |
source | ) |
|
Stop a source, temporarily remove it from the mixer list, and reset its internal state to pre-Play.
To remove a Source completely, it has to be deleted following Stop, or before Play.
Definition at line 41 of file stubs.cpp.