aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_c.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r--Alc/mixer_c.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c
index eeb75bf4..57f39090 100644
--- a/Alc/mixer_c.c
+++ b/Alc/mixer_c.c
@@ -35,6 +35,15 @@ static __inline void ApplyCoeffs(ALuint Offset, ALfloat (*RESTRICT Values)[2],
}
}
+
+static __inline void ApplyValue(ALfloat *RESTRICT Output, ALfloat value, const ALfloat *DrySend)
+{
+ ALuint c;
+ for(c = 0;c < MaxChannels;c++)
+ Output[c] += value*DrySend[c];
+}
+
+
#define SUFFIX C
#define SAMPLER point32
#include "mixer_inc.c"