diff options
author | Chris Robinson <[email protected]> | 2009-04-13 20:33:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-04-13 20:33:41 -0700 |
commit | f245f0ef87cfefd053c656b7f93cc618d46c6532 (patch) | |
tree | a0501dd5b2666f5f991def77a6d111c992d1ae6f /OpenAL32/Include | |
parent | a30f431b63efdcd6a17f2cad5dca205984243723 (diff) |
Make the number of source sends variable
The highest value is clamped to MAX_SENDS
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 66102b8b..bb82d8e1 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -211,6 +211,8 @@ struct ALCcontext_struct ALint lNumMonoSources; ALint lNumStereoSources; + ALuint NumSends; + ALfloat PanningLUT[OUTPUTCHANNELS * LUT_NUM]; ALint NumChan; |