Reduce cpu usage with x11grab

This commit is contained in:
loki-47-6F-64 2021-09-15 12:10:12 +02:00
parent c94d922282
commit e3f642ac25

View File

@ -458,6 +458,7 @@ struct x11_attr_t : public display_t {
std::this_thread::sleep_for((next_frame - now) / 3 * 2);
}
while(next_frame > now) {
std::this_thread::sleep_for(1ns);
now = std::chrono::steady_clock::now();
}
next_frame = now + delay;
@ -566,6 +567,7 @@ struct shm_attr_t : public x11_attr_t {
std::this_thread::sleep_for((next_frame - now) / 3 * 2);
}
while(next_frame > now) {
std::this_thread::sleep_for(1ns);
now = std::chrono::steady_clock::now();
}
next_frame = now + delay;