[client] add ImPlot and rework latency graphs

This commit is contained in:
Geoffrey McRae
2026-08-03 14:18:22 +10:00
parent 7533c855c2
commit 4f39270736
28 changed files with 539 additions and 172 deletions

View File

@@ -917,6 +917,16 @@ void app_invalidateGraph(GraphHandle handle)
overlayGraph_invalidate(handle);
}
void app_setGraphCompact(GraphHandle handle, bool compact)
{
overlayGraph_setCompact(handle, compact);
}
void app_setFrameImportTime(uint64_t time)
{
g_state.frameImportTime = time;
}
void app_registerOverlay(const struct LG_OverlayOps * ops, const void * params)
{
ASSERT_LG_OVERLAY_VALID(ops);