diff options
author | Chris Robinson <[email protected]> | 2018-09-25 23:05:27 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-09-25 23:05:27 -0700 |
commit | 79314c4461333c7dfd7d425d69ffd121d6c163b6 (patch) | |
tree | c73f512dba6a9ca1ed8bcc2f2e09768046ca5a70 /Alc/backends/base.h | |
parent | 2d6309d6fc68e5c2f658b48e6e44ba10be42848e (diff) |
Include the limiter's lookAhead delay in the device latency
Diffstat (limited to 'Alc/backends/base.h')
-rw-r--r-- | Alc/backends/base.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Alc/backends/base.h b/Alc/backends/base.h index 0de4e590..03db56e9 100644 --- a/Alc/backends/base.h +++ b/Alc/backends/base.h @@ -162,6 +162,15 @@ inline void ALCdevice_Lock(ALCdevice *device) inline void ALCdevice_Unlock(ALCdevice *device) { V0(device->Backend,unlock)(); } + +inline ClockLatency GetClockLatency(ALCdevice *device) +{ + ClockLatency ret = V0(device->Backend,getClockLatency)(); + ret.Latency += device->FixedLatency; + return ret; +} + + #ifdef __cplusplus } /* extern "C" */ #endif |