aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-03-02 23:41:26 -0800
committerChris Robinson <[email protected]>2019-03-02 23:41:26 -0800
commit2d14de3fb03f891ea38c26c1a203c186db3e58e2 (patch)
treef06773599ff1f29f2936fc4c2794f84bd97e3812 /OpenAL32/Include
parent0aa0f24dd749fecadade906ce58f56b6726c0f20 (diff)
Use more specific names for temp buffer storage
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alMain.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index f5d25926..39163ce3 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -639,7 +639,9 @@ struct ALCdevice {
/* Temp storage used for mixer processing. */
alignas(16) ALfloat SourceData[BUFFERSIZE + MAX_RESAMPLE_PADDING*2];
- alignas(16) ALfloat TempBuffer[3][BUFFERSIZE];
+ alignas(16) ALfloat ResampledData[BUFFERSIZE];
+ alignas(16) ALfloat FilteredData[BUFFERSIZE];
+ alignas(16) ALfloat NfcSampleData[BUFFERSIZE];
/* Mixing buffer used by the Dry mix, FOAOut, and Real out. */
al::vector<std::array<ALfloat,BUFFERSIZE>, 16> MixBuffer;