#include #include #include "imgui.h" #include "overlay_params.h" #include "iostats.h" struct frame_stat { uint64_t stats[OVERLAY_PLOTS_MAX]; }; struct swapchain_stats { uint64_t n_frames; enum overlay_plots stat_selector; double time_dividor; struct frame_stat stats_min, stats_max; struct frame_stat frames_stats[200]; ImFont* font1 = nullptr; std::string time; double fps; struct iostats io; int total_cpu; uint64_t last_present_time; unsigned n_frames_since_update; uint64_t last_fps_update; struct { int32_t major; int32_t minor; bool is_gles; } version_gl; struct { int32_t major; int32_t minor; int32_t patch; } version_vk; std::string engineName; std::string engineVersion; }; struct fps_limit { int64_t frameStart; int64_t frameEnd; int64_t targetFrameTime; int64_t frameOverhead; int64_t sleepTime; }; extern struct fps_limit fps_limit_stats; void position_layer(struct overlay_params& params, ImVec2 window_size); void render_imgui(swapchain_stats& data, struct overlay_params& params, ImVec2& window_size, bool is_vulkan); void update_hud_info(struct swapchain_stats& sw_stats, struct overlay_params& params, uint32_t vendorID); void init_gpu_stats(uint32_t& vendorID, overlay_params& params); void init_cpu_stats(overlay_params& params); void check_keybinds(struct overlay_params& params); void init_system_info(void); void FpsLimiter(struct fps_limit& stats); void imgui_custom_style(struct overlay_params& params);