diff options
author | Chris Robinson <[email protected]> | 2012-10-14 10:16:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-14 10:27:15 -0700 |
commit | 5ac0a93fbab37cfce1b1a2546295eee37e7ee2d4 (patch) | |
tree | 4671534ed04a5b8252532231d1ced55ae11ae31b /Alc/alcDedicated.c | |
parent | f7655d44a266a4eeadd7d14921363594b64ac15f (diff) |
Mark some parameters as const and/or RESTRICT
Diffstat (limited to 'Alc/alcDedicated.c')
-rw-r--r-- | Alc/alcDedicated.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcDedicated.c b/Alc/alcDedicated.c index 2fb3dbbe..1d2cbc42 100644 --- a/Alc/alcDedicated.c +++ b/Alc/alcDedicated.c @@ -66,7 +66,7 @@ static ALvoid DedicatedUpdate(ALeffectState *effect, ALCdevice *device, const AL state->gains[LFE] = Gain; } -static ALvoid DedicatedProcess(ALeffectState *effect, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[BUFFERSIZE]) +static ALvoid DedicatedProcess(ALeffectState *effect, ALuint SamplesToDo, const ALfloat *RESTRICT SamplesIn, ALfloat (*RESTRICT SamplesOut)[BUFFERSIZE]) { ALdedicatedState *state = (ALdedicatedState*)effect; const ALfloat *gains = state->gains; |