summaryrefslogtreecommitdiffstats
path: root/platform
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-18 09:23:50 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-18 09:23:50 -0600
commit449d90b64e5c2070cdf542379663ad1a35bf4100 (patch)
treea05dd26157844eb17b2209d5ebd7855aae670981 /platform
parent8d530bc95a746beaff2b5d79dfce6ff90f183dbf (diff)
parentdf3367f3343ec5acc579205479642d7275f3e12b (diff)
downloadredot-engine-449d90b64e5c2070cdf542379663ad1a35bf4100.tar.gz
Merge pull request #99178 from mrsaturnsan/windows_sleep_precision
Make `delay_usec` more precise on Windows to fix framepacing
Diffstat (limited to 'platform')
-rw-r--r--platform/windows/os_windows.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp
index 416016b112..a25b7ea4ca 100644
--- a/platform/windows/os_windows.cpp
+++ b/platform/windows/os_windows.cpp
@@ -817,10 +817,22 @@ double OS_Windows::get_unix_time() const {
}
void OS_Windows::delay_usec(uint32_t p_usec) const {
- if (p_usec < 1000) {
- Sleep(1);
- } else {
- Sleep(p_usec / 1000);
+ constexpr uint32_t tolerance = 1000 + 20;
+
+ uint64_t t0 = get_ticks_usec();
+ uint64_t target_time = t0 + p_usec;
+
+ // Calculate sleep duration with a tolerance for fine-tuning.
+ if (p_usec > tolerance) {
+ uint32_t coarse_sleep_usec = p_usec - tolerance;
+ if (coarse_sleep_usec >= 1000) {
+ Sleep(coarse_sleep_usec / 1000);
+ }
+ }
+
+ // Spin-wait until we reach the precise target time.
+ while (get_ticks_usec() < target_time) {
+ YieldProcessor();
}
}