diff options
author | Chris Robinson <[email protected]> | 2007-12-18 14:22:59 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-18 14:22:59 -0800 |
commit | cf03bfa1565db202c72e2c09ba9d32fd89c0f3b5 (patch) | |
tree | dfff73a966fdfb2f112c274e9f5f63981123b02a /OpenAL32/Include | |
parent | d4f556836aa434116d3e6384f4aa5465ff5d7ec3 (diff) |
Implement AL_EFFECTSLOT_EFFECT property
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 e194ab69..26e9822d 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -1,6 +1,7 @@ #ifndef _AL_AUXEFFECTSLOT_H_ #define _AL_AUXEFFECTSLOT_H_ +#include "alEffect.h" #include "AL/al.h" #ifdef __cplusplus @@ -18,6 +19,8 @@ typedef struct ALeffectslot_struct // AuxiliaryEffectSlot type (AL_EFFECT_NULL, ...) ALenum type; + ALeffect effect; + // Index to itself ALuint effectslot; |