diff options
author | Chris Robinson <[email protected]> | 2007-12-18 15:10:21 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-18 15:10:21 -0800 |
commit | bdf16bf601ed1cedc652af62029d4cbd91e90c09 (patch) | |
tree | 497077515488ddbc3937d49e0ced644ae401a7f5 /OpenAL32 | |
parent | cf03bfa1565db202c72e2c09ba9d32fd89c0f3b5 (diff) |
Add initial auxiliary send paths
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alSource.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 38b0094d..1ada61df 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -4,6 +4,7 @@ #define AL_NUM_SOURCE_PARAMS 128 #include "alFilter.h" +#include "alAuxEffectSlot.h" #include "AL/al.h" #define AL_DIRECT_FILTER 0x20005 @@ -62,6 +63,11 @@ typedef struct ALsource_struct ALfilter DirectFilter; + struct { + ALeffectslot Slot; + ALfilter WetFilter; + } Send[1]; + ALfloat LastDrySample; ALfloat LastWetSample; |