diff options
author | Chris Robinson <[email protected]> | 2011-10-08 03:08:13 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-10-08 03:08:13 -0700 |
commit | 3324bab81efb774d5ffa9374c17fb2588b1cc9ae (patch) | |
tree | b63d1245d74e5fb63825a18ae455ed64931f866a /Alc/mixer.c | |
parent | 81133769def858c663718dc3e676d288594e0d66 (diff) |
Mark a couple more arrays with restrict
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 4646a262..0181a31a 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -312,8 +312,8 @@ static void Mix_##T##_##sampler(ALsource *Source, ALCdevice *Device, \ { \ const ALuint NumChannels = Source->NumChannels; \ const T *RESTRICT data = srcdata; \ - ALfloat (*DryBuffer)[MAXCHANNELS]; \ - ALfloat *ClickRemoval, *PendingClicks; \ + ALfloat (*RESTRICT DryBuffer)[MAXCHANNELS]; \ + ALfloat *RESTRICT ClickRemoval, *RESTRICT PendingClicks; \ ALfloat DrySend[MAXCHANNELS]; \ FILTER *DryFilter; \ ALuint pos, frac; \ |