diff options
author | Chris Robinson <[email protected]> | 2010-04-08 08:54:28 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-04-08 08:54:28 -0700 |
commit | b273d616ad5a9979cbf0b69318aded6ec821450e (patch) | |
tree | fd19d6b0a40228669960f7cb30b1e46e04bb9f26 /OpenAL32/Include/alEffect.h | |
parent | c16b895460a51d9f89a8f728155e36ab1009c8c5 (diff) |
Implement a skeleton Ring Modulator effect
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index fa49e5d1..6cbf0e5d 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -13,6 +13,7 @@ enum { EAXREVERB = 0, REVERB, ECHO, + MODULATOR, MAX_EFFECTS }; @@ -62,6 +63,12 @@ typedef struct ALeffect ALfloat Spread; } Echo; + struct { + ALfloat Frequency; + ALfloat HighPassCutoff; + ALint Waveform; + } Modulator; + // Index to itself ALuint effect; |