diff options
author | Chris Robinson <[email protected]> | 2013-11-02 17:30:28 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-11-02 17:30:28 -0700 |
commit | 9760a592b263f41b5fc8b7d5668ae538066acc7d (patch) | |
tree | 9ed3d0737c5e853cb30ee9d8509e8bc0cb002723 /Alc/ALu.c | |
parent | f868d881d912c4b83dbea6dd75003a3f64c2835f (diff) |
Rename VCALL and VCALL0 to V and V0
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1051,10 +1051,10 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) (*slot)->PendingClicks[0] = 0.0f; if(!DeferUpdates && ExchangeInt(&(*slot)->NeedsUpdate, AL_FALSE)) - VCALL((*slot)->EffectState,update)(device, *slot); + V((*slot)->EffectState,update)(device, *slot); - VCALL((*slot)->EffectState,process)(SamplesToDo, (*slot)->WetBuffer[0], - device->DryBuffer); + V((*slot)->EffectState,process)(SamplesToDo, (*slot)->WetBuffer[0], + device->DryBuffer); for(i = 0;i < SamplesToDo;i++) (*slot)->WetBuffer[0][i] = 0.0f; @@ -1080,10 +1080,10 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) (*slot)->PendingClicks[0] = 0.0f; if(ExchangeInt(&(*slot)->NeedsUpdate, AL_FALSE)) - VCALL((*slot)->EffectState,update)(device, *slot); + V((*slot)->EffectState,update)(device, *slot); - VCALL((*slot)->EffectState,process)(SamplesToDo, (*slot)->WetBuffer[0], - device->DryBuffer); + V((*slot)->EffectState,process)(SamplesToDo, (*slot)->WetBuffer[0], + device->DryBuffer); for(i = 0;i < SamplesToDo;i++) (*slot)->WetBuffer[0][i] = 0.0f; |