aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMain.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-01-09 22:01:46 -0800
committerChris Robinson <[email protected]>2018-01-09 22:01:46 -0800
commit9e2eb5dc231d835bf78a7225b6b0def74d0220ef (patch)
treeb3ee84e409790e4b930ca40ca7109cbddfc83eb8 /OpenAL32/Include/alMain.h
parent5d1207104ae4bb1a20ccf72bcdf6b3406c0db6ff (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.h7
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 {