From 75fa891e0a4d00739a8a0ddd037782f99f22a578 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 5 Jul 2011 14:14:20 -0700 Subject: Store and use the send slot in the source params --- Alc/ALu.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Alc/ALu.c') diff --git a/Alc/ALu.c b/Alc/ALu.c index 83017cbc..ffaace7d 100644 --- a/Alc/ALu.c +++ b/Alc/ALu.c @@ -323,8 +323,11 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext) } } for(i = 0;i < NumSends;i++) + { + ALSource->Params.Send[i].Slot = ALSource->Send[i].Slot; ALSource->Params.Send[i].WetGain = WetGain[i] * ListenerGain / ALSource->NumChannels; + } /* Update filter coefficients. Calculations based on the I3DL2 * spec. */ @@ -444,6 +447,8 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext) WetGainAuto = AL_TRUE; WetGainHFAuto = DryGainHFAuto; } + + ALSource->Params.Send[i].Slot = Slot; } //1. Translate Listener to origin (convert to head relative) -- cgit v1.2.3