diff options
author | Chris Robinson <[email protected]> | 2010-07-24 19:14:32 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-07-24 19:14:32 -0700 |
commit | 40dd1fb85364e3a9e278ffa7a034638e7718770b (patch) | |
tree | b4da0f38e57498b1c2e4b44986814f7e58d92ef6 /OpenAL32/Include/alMain.h | |
parent | ab77fc14d53993e90403dd3474725a6202f623c4 (diff) |
Add a backend callback to get the device time
The method should monotonically count the number of nanoseconds the device has
active contexts
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index d9c369ef..5791b336 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -273,6 +273,8 @@ typedef struct { void (*StopCapture)(ALCdevice*); void (*CaptureSamples)(ALCdevice*, void*, ALCuint); ALCuint (*AvailableSamples)(ALCdevice*); + + ALuint64 (*GetTime)(ALCdevice*); } BackendFuncs; enum { @@ -424,6 +426,7 @@ struct ALCdevice_struct #define ALCdevice_StopCapture(a) ((a)->Funcs->StopCapture((a))) #define ALCdevice_CaptureSamples(a,b,c) ((a)->Funcs->CaptureSamples((a), (b), (c))) #define ALCdevice_AvailableSamples(a) ((a)->Funcs->AvailableSamples((a))) +#define ALCdevice_GetTime(a) ((a)->Funcs->GetTime((a))) struct ALCcontext_struct { |