aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alAuxEffectSlot.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-11 02:01:31 -0700
committerChris Robinson <[email protected]>2011-09-11 02:01:31 -0700
commitd85c12c385a29ad83acd936d1dc52411cebdc737 (patch)
tree90744dea2487142a9b5f6c4391a64084bc391d25 /OpenAL32/Include/alAuxEffectSlot.h
parentccd8cbc2a944a0822d1277b1524d05455564b0e5 (diff)
Avoid holding the context lock when setting auxiliary slot properties
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r--OpenAL32/Include/alAuxEffectSlot.h6
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];