diff options
author | Chris Robinson <[email protected]> | 2016-03-17 10:10:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-03-17 10:10:26 -0700 |
commit | ce575718ef495c3c146d7a1b443ce556014e057f (patch) | |
tree | f8482707b34b158a78a10634b55fc5aaaa098545 /OpenAL32/Include | |
parent | 606402fff05b115bc8b4728f9444fa46ef7e5e35 (diff) |
Store the effect's output buffer in the effect state
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index 3f677fd1..2c9a83e5 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -15,6 +15,9 @@ struct ALeffectslot; typedef struct ALeffectState { const struct ALeffectStateVtable *vtbl; + + ALfloat (*OutBuffer)[BUFFERSIZE]; + ALuint OutChannels; } ALeffectState; struct ALeffectStateVtable { |