diff options
author | Chris Robinson <[email protected]> | 2012-10-25 14:52:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-10-25 14:52:09 -0700 |
commit | fb21a73b4eb11868cfb35db717b236dfc8319c64 (patch) | |
tree | a5e037e266ae82fbc8abcaf3e371940cf1bdd277 /OpenAL32/Include | |
parent | 138a4c6d925a7e037aaec5dc4f937b527cf315dc (diff) |
Add the RESTRICT keyword to a function pointer definition's parameters
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |