diff options
author | Chris Robinson <[email protected]> | 2013-10-06 10:11:01 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-06 10:11:01 -0700 |
commit | 6425480d40e2a1b150c208db0421eabb51fe0624 (patch) | |
tree | 51e7c60d51b3a34f96f46237c6925017173cd32d /OpenAL32/Include/alSource.h | |
parent | 8448b94c0bf3f0ddbd040b25a68ff0ca2dcc37bd (diff) |
Don't store the effect slot in SendParams
This makes it much more like DirectParams.
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 03da250f..632c8fc1 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -66,7 +66,9 @@ typedef struct DirectParams { } DirectParams; typedef struct SendParams { - struct ALeffectslot *Slot; + ALfloat (*OutBuffer)[BUFFERSIZE]; + ALfloat *ClickRemoval; + ALfloat *PendingClicks; /* Gain control, which applies to all input channels to a single (mono) * output buffer. */ |