From ce575718ef495c3c146d7a1b443ce556014e057f Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 17 Mar 2016 10:10:26 -0700 Subject: Store the effect's output buffer in the effect state --- OpenAL32/Include/alAuxEffectSlot.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenAL32/Include') 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 { -- cgit v1.2.3