Files
Renderive/Qt/plot/Latency_Eager_Plot.h
T
2026-08-02 03:43:39 +08:00

14 lines
426 B
C++

#pragma once
#include "Plot.h"
namespace renderive {
class LIB_DECL Latency_Eager_Plot : public Abs_Plot {
public:
Latency_Eager_Plot();
~Latency_Eager_Plot() override = default;
[[nodiscard]] double max_render_fps() const;
void set_max_render_fps(double fps);
[[nodiscard]] Refresh_Control_Snapshot refresh_feedback_snapshot() const;
void start_render(int max_render_fps);
};
} // namespace renderive