2023-02-23 17:00:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
struct Throttle
|
|
|
|
{
|
|
|
|
void set_frame_rate(double frame_rate);
|
|
|
|
void advance();
|
|
|
|
void reset();
|
|
|
|
void wait_for_frame();
|
2023-02-23 21:24:01 +00:00
|
|
|
void wait_for_frame_and_rebase_time();
|
2023-02-23 17:00:06 +00:00
|
|
|
std::chrono::microseconds remaining();
|
|
|
|
double max_frame_rate = 0.0;
|
|
|
|
double frame_duration = 0.0;
|
|
|
|
std::chrono::microseconds frame_duration_us;
|
|
|
|
std::chrono::time_point<std::chrono::steady_clock, std::chrono::microseconds> then;
|
|
|
|
};
|