(iOS/QNX) Add FPS/refresh rate monitoring
This commit is contained in:
parent
4ea7b492f7
commit
43e6637768
|
@ -323,12 +323,7 @@ static void gfx_ctx_set_resize(unsigned width, unsigned height)
|
||||||
static void gfx_ctx_update_window_title(void)
|
static void gfx_ctx_update_window_title(void)
|
||||||
{
|
{
|
||||||
char buf[128];
|
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);
|
gfx_get_fps(buf, sizeof(buf), false);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool gfx_ctx_set_video_mode(
|
static bool gfx_ctx_set_video_mode(
|
||||||
|
|
|
@ -44,6 +44,8 @@ static bool gfx_ctx_set_video_mode(
|
||||||
|
|
||||||
static void gfx_ctx_update_window_title(void)
|
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,
|
static void gfx_ctx_check_window(bool *quit,
|
||||||
|
|
Loading…
Reference in New Issue