diff options
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index c71e844f..b870059b 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -507,6 +507,15 @@ struct ALCdevice_struct ALuint NumChannels; } Dry; + /* First-order ambisonics output, to be upsampled to the dry buffer if different. */ + struct { + /* Ambisonic coefficients for mixing. */ + ChannelConfig AmbiCoeffs[MAX_OUTPUT_CHANNELS]; + + ALfloat (*Buffer)[BUFFERSIZE]; + ALuint NumChannels; + } FOAOut; + /* Virtual output, to be post-processed to the real output. */ struct { ALfloat (*Buffer)[BUFFERSIZE]; |