aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_defs.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-06-13 11:42:04 -0700
committerChris Robinson <[email protected]>2014-06-13 11:42:04 -0700
commitc29eb6348980bf101f2a043d3f3b017dc1c48538 (patch)
tree25686d7176248b3969759d005da6062abc59179e /Alc/mixer_defs.h
parent19ec7b2ad241a7b4423cfa9df53e78f480ef9b5e (diff)
Combine some dry and wet path types
Diffstat (limited to 'Alc/mixer_defs.h')
-rw-r--r--Alc/mixer_defs.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Alc/mixer_defs.h b/Alc/mixer_defs.h
index caa06c25..2ade14f0 100644
--- a/Alc/mixer_defs.h
+++ b/Alc/mixer_defs.h
@@ -7,7 +7,6 @@
#include "alu.h"
struct MixGains;
-struct MixGainMono;
struct HrtfParams;
struct HrtfState;
@@ -28,7 +27,7 @@ void MixDirect_C(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
struct MixGains *Gains, ALuint Counter, ALuint OutPos,
ALuint BufferSize);
void MixSend_C(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
- struct MixGainMono *Gain, ALuint Counter, ALuint OutPos,
+ struct MixGains *Gain, ALuint Counter, ALuint OutPos,
ALuint BufferSize);
/* SSE mixers */
@@ -40,7 +39,7 @@ void MixDirect_SSE(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *dat
struct MixGains *Gains, ALuint Counter, ALuint OutPos,
ALuint BufferSize);
void MixSend_SSE(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
- struct MixGainMono *Gain, ALuint Counter, ALuint OutPos,
+ struct MixGains *Gain, ALuint Counter, ALuint OutPos,
ALuint BufferSize);
/* SSE resamplers */
@@ -72,7 +71,7 @@ void MixDirect_Neon(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *da
struct MixGains *Gains, ALuint Counter, ALuint OutPos,
ALuint BufferSize);
void MixSend_Neon(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
- struct MixGainMono *Gain, ALuint Counter, ALuint OutPos,
+ struct MixGains *Gain, ALuint Counter, ALuint OutPos,
ALuint BufferSize);
#endif /* MIXER_DEFS_H */