diff options
author | Chris Robinson <[email protected]> | 2015-08-15 01:37:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-08-15 01:37:46 -0700 |
commit | d5ab883da21499a14bf86a1aa7f0ad894becb1c5 (patch) | |
tree | 1a57fd3390d5bdf28d064687fb32d3cf0a51b9bd /Alc/mixer_inc.c | |
parent | f6e52debb5106dcc6ff99fe005da4501fd56522d (diff) |
Define MixHrtf directly instead of through a SUFFIX macro
Diffstat (limited to 'Alc/mixer_inc.c')
-rw-r--r-- | Alc/mixer_inc.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Alc/mixer_inc.c b/Alc/mixer_inc.c index 63003f03..a82930cc 100644 --- a/Alc/mixer_inc.c +++ b/Alc/mixer_inc.c @@ -8,12 +8,6 @@ #include "align.h" -#define REAL_MERGE(a,b) a##b -#define MERGE(a,b) REAL_MERGE(a,b) - -#define MixHrtf MERGE(MixHrtf_,SUFFIX) - - static inline void SetupCoeffs(ALfloat (*restrict OutCoeffs)[2], const HrtfParams *hrtfparams, ALuint IrSize, ALuint Counter); @@ -83,9 +77,3 @@ void MixHrtf(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data, OutPos++; } } - - -#undef MixHrtf - -#undef MERGE -#undef REAL_MERGE |