(iOS/QNX) Add FPS/refresh rate monitoring

This commit is contained in:
twinaphex 2013-06-14 02:17:20 +02:00
parent 4ea7b492f7
commit 43e6637768
2 changed files with 2 additions and 5 deletions

View File

@ -323,12 +323,7 @@ static void gfx_ctx_set_resize(unsigned width, unsigned height)
static void gfx_ctx_update_window_title(void)
{
char buf[128];
#if 0
if (gfx_get_fps(buf, sizeof(buf), false))
RARCH_LOG("%s.\n", buf);
#else
gfx_get_fps(buf, sizeof(buf), false);
#endif
}
static bool gfx_ctx_set_video_mode(

View File

@ -44,6 +44,8 @@ static bool gfx_ctx_set_video_mode(
static void gfx_ctx_update_window_title(void)
{
char buf[128];
gfx_get_fps(bu, sizeof(buf), false);
}
static void gfx_ctx_check_window(bool *quit,