diff options
author | Chris Robinson <[email protected]> | 2010-11-25 23:09:18 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-11-25 23:09:18 -0800 |
commit | e1c0b5ea24bbe2db24cf4f81a708d4d565d37f78 (patch) | |
tree | 1fb5cd209a2d57a07e6bdedaf392a8faf797edbe /OpenAL32/Include/alSource.h | |
parent | 30820c1bdeadb49b4eeb44d46e3b472460cdd53a (diff) |
Call MixSource directly, instead of through a function pointer
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index e2452279..d60416b6 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -99,13 +99,11 @@ typedef struct ALsource } Params; ALvoid (*Update)(struct ALsource *self, const ALCcontext *context); - ALvoid (*Mix)(struct ALsource *self, ALCdevice *Device, ALuint SamplesToDo); // Index to itself ALuint source; } ALsource; #define ALsource_Update(s,a) ((s)->Update(s,a)) -#define ALsource_Mix(s,a,b) ((s)->Mix(s,a,b)) ALvoid ReleaseALSources(ALCcontext *Context); |