diff options
author | Chris Robinson <[email protected]> | 2013-12-29 02:40:12 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-12-29 02:40:12 -0800 |
commit | deecbbc55d44a0043c92464949c83c9722d6be00 (patch) | |
tree | c00c75c006cce9167ecefe32fe9fa67cd59e8da6 /OpenAL32/Include/alMidi.h | |
parent | d9aedc14167c7f5c4fc02f95de6be89ef8db63c2 (diff) |
Add modulation envelope properties
Diffstat (limited to 'OpenAL32/Include/alMidi.h')
-rw-r--r-- | OpenAL32/Include/alMidi.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMidi.h b/OpenAL32/Include/alMidi.h index 8daeaf53..acf6bf1a 100644 --- a/OpenAL32/Include/alMidi.h +++ b/OpenAL32/Include/alMidi.h @@ -36,6 +36,16 @@ typedef struct ALfontsound { ALint ReleaseTime; ALint KeyToHoldTime; ALint KeyToDecayTime; + } ModEnv; + struct { + ALint DelayTime; + ALint AttackTime; + ALint HoldTime; + ALint DecayTime; + ALint SustainVol; + ALint ReleaseTime; + ALint KeyToHoldTime; + ALint KeyToDecayTime; } VolEnv; ALuint Start; |