diff options
author | Chris Robinson <[email protected]> | 2012-08-29 02:43:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-29 02:43:19 -0700 |
commit | 795909c39e68ef9554e90602e5b4a48bc43f4d93 (patch) | |
tree | f2bf1bfc45a3a4e60beb3620dc062dff0c96fa0f /Alc/mixer_sse.c | |
parent | 3c042a054d3cf714959ec58d81e77fc6d8cbb650 (diff) |
Minor cleanups for mixer_inc
Diffstat (limited to 'Alc/mixer_sse.c')
-rw-r--r-- | Alc/mixer_sse.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Alc/mixer_sse.c b/Alc/mixer_sse.c index 270817fb..0f80b095 100644 --- a/Alc/mixer_sse.c +++ b/Alc/mixer_sse.c @@ -77,13 +77,13 @@ static __inline void ApplyValue(ALfloat *RESTRICT Output, ALfloat value, const A #define SUFFIX SSE -#define SAMPLER point32 +#define Sampler point32 #include "mixer_inc.c" -#undef SAMPLER -#define SAMPLER lerp32 +#undef Sampler +#define Sampler lerp32 #include "mixer_inc.c" -#undef SAMPLER -#define SAMPLER cubic32 +#undef Sampler +#define Sampler cubic32 #include "mixer_inc.c" -#undef SAMPLER +#undef Sampler #undef SUFFIX |