diff options
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 3850875d..cfc54acc 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -87,7 +87,14 @@ typedef struct SendParams { /* Gain control, which applies to all input channels to a single (mono) * output buffer. */ - ALfloat Gain; + struct { + ALfloat Current; + ALfloat Step; + ALfloat Target; + } Gain; + + ALboolean Moving; + ALuint Counter; ALfilterState LpFilter[MAX_INPUT_CHANNELS]; } SendParams; |