diff options
author | Chris Robinson <[email protected]> | 2016-10-06 01:39:18 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-10-06 01:39:18 -0700 |
commit | 76cd6797b7e58272e4e5268f1461f209045b9de4 (patch) | |
tree | 7c16fc353376d3bec215ebe208ac7a96f6f3f205 /Alc/mixer_sse.c | |
parent | 965e91c702db7b79fe70124634902712fd19b4ad (diff) |
Add some more 'restrict' keywords
Diffstat (limited to 'Alc/mixer_sse.c')
-rw-r--r-- | Alc/mixer_sse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Alc/mixer_sse.c b/Alc/mixer_sse.c index 6d18a638..f5e21e23 100644 --- a/Alc/mixer_sse.c +++ b/Alc/mixer_sse.c @@ -12,8 +12,9 @@ #include "mixer_defs.h" -const ALfloat *Resample_bsinc32_SSE(const BsincState *state, const ALfloat *src, ALuint frac, - ALuint increment, ALfloat *restrict dst, ALuint dstlen) +const ALfloat *Resample_bsinc32_SSE(const BsincState *state, const ALfloat *restrict src, + ALuint frac, ALuint increment, ALfloat *restrict dst, + ALuint dstlen) { const __m128 sf4 = _mm_set1_ps(state->sf); const ALuint m = state->m; |