diff options
Diffstat (limited to 'OpenAL32/Include/alEcho.h')
-rw-r--r-- | OpenAL32/Include/alEcho.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/OpenAL32/Include/alEcho.h b/OpenAL32/Include/alEcho.h new file mode 100644 index 00000000..34896ea7 --- /dev/null +++ b/OpenAL32/Include/alEcho.h @@ -0,0 +1,24 @@ +#ifndef AL_ECHO_H +#define AL_ECHO_H + +#include "AL/al.h" +#include "AL/alc.h" +#include "alMain.h" +#include "alEffect.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct ALechoState ALechoState; + +ALechoState *EchoCreate(ALCcontext *Context); +ALvoid EchoDestroy(ALechoState *State); +ALvoid EchoUpdate(ALCcontext *Context, struct ALeffectslot *Slot, ALeffect *Effect); +ALvoid EchoProcess(ALechoState *State, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[OUTPUTCHANNELS]); + +#ifdef __cplusplus +} +#endif + +#endif |