diff options
author | Chris Robinson <[email protected]> | 2017-02-07 19:32:49 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-02-07 19:32:49 -0800 |
commit | 5bd63ff03d324f772875611325ee10c8a8df1c3c (patch) | |
tree | 20bf58595abd1c7d54514ddfe09ec4c1f6582fc8 /OpenAL32/Include | |
parent | 7cc8ba99f094119d176538325c827cad63140801 (diff) |
Remove a couple context lock wrapper functions
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 2ef43ce7..2573c836 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -822,12 +822,6 @@ void ALCdevice_Unlock(ALCdevice *device); void ALCcontext_DeferUpdates(ALCcontext *context, ALenum type); void ALCcontext_ProcessUpdates(ALCcontext *context); -inline void LockContext(ALCcontext *context) -{ ALCdevice_Lock(context->Device); } - -inline void UnlockContext(ALCcontext *context) -{ ALCdevice_Unlock(context->Device); } - enum { DeferOff = AL_FALSE, DeferAll, |