diff options
author | Chris Robinson <[email protected]> | 2011-08-29 21:30:12 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-29 21:30:12 -0700 |
commit | 7408396fd4bc1e99c1f8bd66006c5587362a5d8e (patch) | |
tree | c01e5440dcfe31efa4eda1c001386b68659c554e /Alc | |
parent | da081b81c425805eef5b3d4a07c7a213490e04b7 (diff) |
Use a generic int type to handle enum swaps
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALu.c | 6 | ||||
-rw-r--r-- | Alc/helpers.c | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -982,7 +982,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) ALenum UpdateSources = AL_FALSE; if(!DeferUpdates) - UpdateSources = Exchange_ALenum(&ctx->UpdateSources, AL_FALSE); + UpdateSources = ExchangeInt(&ctx->UpdateSources, AL_FALSE); src = ctx->ActiveSources; src_end = src + ctx->ActiveSourceCount; @@ -995,7 +995,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) continue; } - if(!DeferUpdates && (Exchange_ALenum(&(*src)->NeedsUpdate, AL_FALSE) || + if(!DeferUpdates && (ExchangeInt(&(*src)->NeedsUpdate, AL_FALSE) || UpdateSources)) ALsource_Update(*src, ctx); @@ -1019,7 +1019,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size) ALEffectSlot->PendingClicks[i] = 0.0f; } - if(!DeferUpdates && Exchange_ALenum(&ALEffectSlot->NeedsUpdate, AL_FALSE)) + if(!DeferUpdates && ExchangeInt(&ALEffectSlot->NeedsUpdate, AL_FALSE)) ALEffect_Update(ALEffectSlot->EffectState, ctx, ALEffectSlot); ALEffect_Process(ALEffectSlot->EffectState, ALEffectSlot, diff --git a/Alc/helpers.c b/Alc/helpers.c index 265c8210..90bec01c 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -268,13 +268,13 @@ void SetRTPriority(void) static void Lock(volatile ALenum *l) { - while(Exchange_ALenum(l, AL_TRUE) == AL_TRUE) + while(ExchangeInt(l, AL_TRUE) == AL_TRUE) Sleep(0); } static void Unlock(volatile ALenum *l) { - Exchange_ALenum(l, AL_FALSE); + ExchangeInt(l, AL_FALSE); } void ReadLock(RWLock *lock) |