From fb21a73b4eb11868cfb35db717b236dfc8319c64 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 25 Oct 2012 14:52:09 -0700 Subject: [PATCH] Add the RESTRICT keyword to a function pointer definition's parameters --- OpenAL32/Include/alAuxEffectSlot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index 6f4e5c10..4c14b1f7 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -12,7 +12,7 @@ typedef struct ALeffectState { ALvoid (*Destroy)(struct ALeffectState *State); ALboolean (*DeviceUpdate)(struct ALeffectState *State, ALCdevice *Device); ALvoid (*Update)(struct ALeffectState *State, ALCdevice *Device, const struct ALeffectslot *Slot); - ALvoid (*Process)(struct ALeffectState *State, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[BUFFERSIZE]); + ALvoid (*Process)(struct ALeffectState *State, ALuint SamplesToDo, const ALfloat *RESTRICT SamplesIn, ALfloat (*RESTRICT SamplesOut)[BUFFERSIZE]); } ALeffectState; -- 2.11.4.GIT