diff options
author | Chris Robinson <[email protected]> | 2016-04-14 21:50:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-04-14 21:50:36 -0700 |
commit | fb97822d8c3e8a3f712099a2ecfcf0ec5a43c32e (patch) | |
tree | f20de7c6ad6ecdcf79599ae05e870dd8ac61684d /OpenAL32/Include/alMain.h | |
parent | 21921cdaffbd6f66a8cdc452925ca407b830c406 (diff) |
Avoid unnecessary loops for setting up effect slot b-format buffer mixing
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 909c42cd..9ba6d050 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -407,6 +407,10 @@ enum RenderMode { #define MAX_AMBI_COEFFS ((MAX_AMBI_ORDER+1) * (MAX_AMBI_ORDER+1)) typedef ALfloat ChannelConfig[MAX_AMBI_COEFFS]; +typedef struct BFChannelConfig { + ALfloat Scale; + ALuint Index; +} BFChannelConfig; #define HRTF_HISTORY_BITS (6) |