[client] app: allow selective full invalidation

Overlays only need to trigger a new frame if they have changed and not
full window invalidation, this change allows for this.
This commit is contained in:
Geoffrey McRae
2021-08-05 06:47:36 +10:00
parent 6c84c0eca6
commit 6e7f39edee
8 changed files with 13 additions and 12 deletions

View File

@@ -31,7 +31,7 @@ static bool showFPS;
static void showFPSKeybind(int sc, void * opaque)
{
showFPS ^= true;
app_invalidateWindow();
app_invalidateWindow(false);
}
static void fps_earlyInit(void)

View File

@@ -65,7 +65,7 @@ static void configCallback(void * udata)
static void showTimingKeybind(int sc, void * opaque)
{
gs.show ^= true;
app_invalidateWindow();
app_invalidateWindow(false);
}
static bool graphs_init(void ** udata, const void * params)