diff options
author | Chris Robinson <[email protected]> | 2010-03-23 19:49:31 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-23 19:49:31 -0700 |
commit | 661059bf0f6fb03eed305207d935cb5bcbdfab27 (patch) | |
tree | 495399d7363823744a6a1651075c8c3c30c36b6d /Alc/ALc.c | |
parent | 7fb4c4ce4fca4c7849f911c3a8dc7643167a1c7d (diff) |
Rename alcMakeCurrent to alcSetThreadContext
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -113,7 +113,7 @@ static ALCfunction alcFunctions[] = { { "alcCaptureStop", (ALvoid *) alcCaptureStop }, { "alcCaptureSamples", (ALvoid *) alcCaptureSamples }, - { "alcMakeCurrent", (ALvoid *) alcMakeCurrent }, + { "alcSetThreadContext", (ALvoid *) alcSetThreadContext }, { "alcGetThreadContext", (ALvoid *) alcGetThreadContext }, { NULL, (ALvoid *) NULL } @@ -1552,11 +1552,11 @@ ALC_API ALCboolean ALC_APIENTRY alcMakeContextCurrent(ALCcontext *context) } /* - alcMakeCurrent + alcSetThreadContext Makes the given Context the active Context for the current thread */ -ALC_API ALCboolean ALC_APIENTRY alcMakeCurrent(ALCcontext *context) +ALC_API ALCboolean ALC_APIENTRY alcSetThreadContext(ALCcontext *context) { ALboolean bReturn = AL_TRUE; |