diff options
author | Chris Robinson <[email protected]> | 2018-01-09 22:01:46 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-01-09 22:01:46 -0800 |
commit | 9e2eb5dc231d835bf78a7225b6b0def74d0220ef (patch) | |
tree | b3ee84e409790e4b930ca40ca7109cbddfc83eb8 /OpenAL32/Include/alMain.h | |
parent | 5d1207104ae4bb1a20ccf72bcdf6b3406c0db6ff (diff) |
Rename the device's temp buffer storage to be more generic
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 37baabed..74b01b09 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -748,11 +748,8 @@ struct ALCdevice_struct ALuint64 ClockBase; ALuint SamplesDone; - /* Temp storage used for each source when mixing. */ - alignas(16) ALfloat SourceData[BUFFERSIZE]; - alignas(16) ALfloat ResampledData[BUFFERSIZE]; - alignas(16) ALfloat FilteredData[BUFFERSIZE]; - alignas(16) ALfloat NFCtrlData[BUFFERSIZE]; + /* Temp storage used for mixer processing. */ + alignas(16) ALfloat TempBuffer[4][BUFFERSIZE]; /* The "dry" path corresponds to the main output. */ struct { |