14 lines
429 B
C++
14 lines
429 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 get_max_render_fps() const;
|
|
void set_max_render_fps(double fps);
|
|
[[nodiscard]] Refresh_Control_Snapshot get_frame_feedback_state() const;
|
|
void start_render(int max_render_fps);
|
|
};
|
|
} // namespace renderive
|