From 4eee2853cb38892283fffc939b8f2d4e540c0d30 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Sat, 4 Feb 2023 11:08:43 -0800 Subject: Warm up application update function before first render. --- gfx-app/include/gfx/gfx_app.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gfx-app/include') diff --git a/gfx-app/include/gfx/gfx_app.h b/gfx-app/include/gfx/gfx_app.h index bdb3550..4744992 100644 --- a/gfx-app/include/gfx/gfx_app.h +++ b/gfx-app/include/gfx/gfx_app.h @@ -3,12 +3,12 @@ #include typedef struct GfxAppDesc { - int argc; // Number of application arguments. - const char** argv; // Application arguments. - int width; // Window width. - int height; // Window height. - int max_fps; // Desired maximum framerate. 0 to disable. - double update_delta_time; // Desired delta time between frame updates. + int argc; // Number of application arguments. + const char** argv; // Application arguments. + int width; // Window width. + int height; // Window height. + int max_fps; // Desired maximum display framerate. 0 to disable. + double update_delta_time; // Desired delta time between frame updates. } GfxAppDesc; typedef struct GfxAppCallbacks { -- cgit v1.2.3