2007-12-17 17:43:19 -08:00
|
|
|
#ifndef _AL_AUXEFFECTSLOT_H_
|
|
|
|
#define _AL_AUXEFFECTSLOT_H_
|
|
|
|
|
2007-12-18 14:22:59 -08:00
|
|
|
#include "alEffect.h"
|
2007-12-17 17:43:19 -08:00
|
|
|
#include "AL/al.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define AL_EFFECTSLOT_EFFECT 0x0001
|
|
|
|
#define AL_EFFECTSLOT_GAIN 0x0002
|
|
|
|
#define AL_EFFECTSLOT_AUXILIARY_SEND_AUTO 0x0003
|
|
|
|
|
|
|
|
#define AL_EFFECTSLOT_NULL 0x0000
|
|
|
|
|
2008-01-15 16:01:27 -08:00
|
|
|
typedef struct ALeffectslot
|
2007-12-17 17:43:19 -08:00
|
|
|
{
|
2007-12-18 14:22:59 -08:00
|
|
|
ALeffect effect;
|
|
|
|
|
2007-12-18 15:47:24 -08:00
|
|
|
ALfloat Gain;
|
2007-12-18 17:41:44 -08:00
|
|
|
ALboolean AuxSendAuto;
|
2007-12-18 15:47:24 -08:00
|
|
|
|
2008-01-16 13:20:09 -08:00
|
|
|
ALuint refcount;
|
|
|
|
|
2007-12-17 17:43:19 -08:00
|
|
|
// Index to itself
|
|
|
|
ALuint effectslot;
|
|
|
|
|
2008-01-15 16:01:27 -08:00
|
|
|
struct ALeffectslot *next;
|
2007-12-17 17:43:19 -08:00
|
|
|
} ALeffectslot;
|
|
|
|
|
|
|
|
AL_API ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDeleteAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots);
|
|
|
|
AL_API ALboolean AL_APIENTRY alIsAuxiliaryEffectSlot(ALuint effectslot);
|
|
|
|
|
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint iValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues);
|
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat flValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues);
|
|
|
|
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSloti(ALuint effectslot, ALenum param, ALint *piValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotiv(ALuint effectslot, ALenum param, ALint *piValues);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotf(ALuint effectslot, ALenum param, ALfloat *pflValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotfv(ALuint effectslot, ALenum param, ALfloat *pflValues);
|
|
|
|
|
2008-01-15 16:22:39 -08:00
|
|
|
ALvoid ReleaseALAuxiliaryEffectSlots(ALCcontext *Context);
|
2007-12-17 17:43:19 -08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|