[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

@@ -145,6 +145,8 @@ GraphHandle app_registerGraph(const char * name, RingBuffer buffer,
float min, float max, GraphFormatFn formatFn);
void app_unregisterGraph(GraphHandle handle);
void app_invalidateGraph(GraphHandle handle);
void app_setGraphCompact(GraphHandle handle, bool compact);
void app_setFrameImportTime(uint64_t time);
void app_overlayConfigRegister(const char * title,
void (*callback)(void * udata, int * id), void * udata);

View File

@@ -25,7 +25,7 @@
#include "common/types.h"
typedef struct ImVec2 ImVec2;
typedef struct ImVec2_c ImVec2;
typedef struct
{