diff options
author | Chris Robinson <[email protected]> | 2011-09-11 02:01:31 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-09-11 02:01:31 -0700 |
commit | d85c12c385a29ad83acd936d1dc52411cebdc737 (patch) | |
tree | 90744dea2487142a9b5f6c4391a64084bc391d25 /OpenAL32/Include/alAuxEffectSlot.h | |
parent | ccd8cbc2a944a0822d1277b1524d05455564b0e5 (diff) |
Avoid holding the context lock when setting auxiliary slot properties
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index b7fe3b4c..6f18993e 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -15,10 +15,10 @@ typedef struct ALeffectslot { ALeffect effect; - ALfloat Gain; - ALboolean AuxSendAuto; + volatile ALfloat Gain; + volatile ALboolean AuxSendAuto; - ALenum NeedsUpdate; + volatile ALenum NeedsUpdate; ALeffectState *EffectState; ALfloat WetBuffer[BUFFERSIZE]; |