aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-16 05:29:38 -0700
committerChris Robinson <[email protected]>2011-06-16 05:29:38 -0700
commit8bee7a2b7f6ab60e08f2f2fc8e0dc2d39563c006 (patch)
tree4714f211365a3086805d44b2623eaa2d8b0e8a09 /Alc/ALu.c
parent632b4e6332a9fd3e7e0a47767a5620aadb1ea843 (diff)
Don't suspend individual contexts when updating
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 2c35498a..ab1c24dd 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -942,8 +942,6 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
ctx_end = ctx + device->NumContexts;
while(ctx != ctx_end)
{
- SuspendContext(*ctx);
-
src = (*ctx)->ActiveSources;
src_end = src + (*ctx)->ActiveSourceCount;
while(src != src_end)
@@ -989,7 +987,6 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
ALEffectSlot->WetBuffer[i] = 0.0f;
}
- ProcessContext(*ctx);
ctx++;
}
ProcessContext(NULL);