diff options
Diffstat (limited to 'OpenAL32/Include/alReverb.h')
-rw-r--r-- | OpenAL32/Include/alReverb.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/OpenAL32/Include/alReverb.h b/OpenAL32/Include/alReverb.h deleted file mode 100644 index 95b5adb0..00000000 --- a/OpenAL32/Include/alReverb.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef _AL_REVERB_H_ -#define _AL_REVERB_H_ - -#include "AL/al.h" -#include "AL/alc.h" -#include "alMain.h" -#include "alAuxEffectSlot.h" -#include "alEffect.h" - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct ALverbState ALverbState; - -ALverbState *VerbCreate(ALCcontext *Context); -ALverbState *EAXVerbCreate(ALCcontext *Context); -ALvoid VerbDestroy(ALverbState *State); -ALvoid VerbUpdate(ALCcontext *Context, struct ALeffectslot *Slot, ALeffect *Effect); -ALvoid VerbProcess(ALverbState *State, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[OUTPUTCHANNELS]); -ALvoid EAXVerbProcess(ALverbState *State, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[OUTPUTCHANNELS]); - -#ifdef __cplusplus -} -#endif - -#endif - |