diff options
author | Chris Robinson <[email protected]> | 2010-07-25 12:54:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-07-25 12:54:50 -0700 |
commit | 46d46c49a87b33ed727a7099aca3dc89e06e57cd (patch) | |
tree | fb5e8d5611de607f6ddb707e1406d71e0bbe251d /OpenAL32/Include | |
parent | 40dd1fb85364e3a9e278ffa7a034638e7718770b (diff) |
Store the time precision with the device
Diffstat (limited to 'OpenAL32/Include')
-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 5791b336..4957b942 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -410,6 +410,9 @@ struct ALCdevice_struct // Number of samples rendered by this device ALuint64 SamplesPlayed; + // Precision of this device's timing + ALuint64 TimeRes; + BackendFuncs *Funcs; void *ExtraData; // For the backend's use |