diff options
author | Chris Robinson <[email protected]> | 2016-07-05 14:18:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-07-05 14:18:17 -0700 |
commit | d340d50d49287725802eae02771f2776f49f16e9 (patch) | |
tree | 7bc8e1e311caf3aa5620cb6e75740c7725d04a29 /OpenAL32 | |
parent | 8f4d6c48ce6621e2e2b79ada781b9e3dfc9ed38c (diff) |
Remove the VirtOut buffer alias
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 99407fa8..532f7947 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -630,12 +630,9 @@ struct ALCdevice_struct ALuint NumChannels; } FOAOut; - /* Virtual output, to be post-processed to the real output. */ - struct { - ALfloat (*Buffer)[BUFFERSIZE]; - ALuint NumChannels; - } VirtOut; - /* "Real" output, which will be written to the device buffer. */ + /* "Real" output, which will be written to the device buffer. May alias the + * dry buffer. + */ struct { enum Channel ChannelName[MAX_OUTPUT_CHANNELS]; |