mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Add DISPLAYLIST_PERFCOUNTERS_*
This commit is contained in:
parent
592bf74d05
commit
acf332dce4
@ -18,6 +18,36 @@
|
|||||||
#include "menu_entries.h"
|
#include "menu_entries.h"
|
||||||
#include "menu_displaylist.h"
|
#include "menu_displaylist.h"
|
||||||
#include "menu_navigation.h"
|
#include "menu_navigation.h"
|
||||||
|
#include "../performance.h"
|
||||||
|
|
||||||
|
static void menu_displaylist_push_perfcounter(
|
||||||
|
menu_displaylist_info_t *info,
|
||||||
|
const struct retro_perf_counter **counters,
|
||||||
|
unsigned num, unsigned id)
|
||||||
|
{
|
||||||
|
unsigned i;
|
||||||
|
if (!counters || num == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
for (i = 0; i < num; i++)
|
||||||
|
if (counters[i] && counters[i]->ident)
|
||||||
|
menu_list_push(info->list,
|
||||||
|
counters[i]->ident, "", id + i, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int menu_displaylist_push_perfcounter_generic(
|
||||||
|
menu_displaylist_info_t *info,
|
||||||
|
const struct retro_perf_counter **counters,
|
||||||
|
unsigned num, unsigned ident)
|
||||||
|
{
|
||||||
|
menu_list_clear(info->list);
|
||||||
|
menu_displaylist_push_perfcounter(info, counters, num, ident);
|
||||||
|
|
||||||
|
menu_driver_populate_entries(
|
||||||
|
info->path, info->label, info->type);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int menu_displaylist_push_list(menu_displaylist_info_t *info, unsigned type)
|
int menu_displaylist_push_list(menu_displaylist_info_t *info, unsigned type)
|
||||||
{
|
{
|
||||||
@ -56,6 +86,16 @@ int menu_displaylist_push_list(menu_displaylist_info_t *info, unsigned type)
|
|||||||
|
|
||||||
menu_driver_populate_entries(info->path, info->label, info->type);
|
menu_driver_populate_entries(info->path, info->label, info->type);
|
||||||
break;
|
break;
|
||||||
|
case DISPLAYLIST_PERFCOUNTERS_CORE:
|
||||||
|
ret = menu_displaylist_push_perfcounter_generic(info,
|
||||||
|
perf_counters_libretro, perf_ptr_libretro,
|
||||||
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN);
|
||||||
|
break;
|
||||||
|
case DISPLAYLIST_PERFCOUNTERS_FRONTEND:
|
||||||
|
ret = menu_displaylist_push_perfcounter_generic(info,
|
||||||
|
perf_counters_rarch, perf_ptr_rarch,
|
||||||
|
MENU_SETTINGS_PERF_COUNTERS_BEGIN);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1564,64 +1564,32 @@ static int deferred_push_management_options(void *data, void *userdata,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void push_perfcounter(menu_handle_t *menu,
|
|
||||||
file_list_t *list,
|
|
||||||
const struct retro_perf_counter **counters,
|
|
||||||
unsigned num, unsigned id)
|
|
||||||
{
|
|
||||||
unsigned i;
|
|
||||||
if (!counters || num == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
for (i = 0; i < num; i++)
|
|
||||||
if (counters[i] && counters[i]->ident)
|
|
||||||
menu_list_push(list, counters[i]->ident, "",
|
|
||||||
id + i, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int push_perfcounter_generic(
|
|
||||||
void *data,
|
|
||||||
void *userdata,
|
|
||||||
const char *path, const char *label,
|
|
||||||
const struct retro_perf_counter **counters,
|
|
||||||
unsigned num, unsigned ident,
|
|
||||||
unsigned type)
|
|
||||||
{
|
|
||||||
file_list_t *list = NULL;
|
|
||||||
file_list_t *menu_list = NULL;
|
|
||||||
menu_handle_t *menu = menu_driver_get_ptr();
|
|
||||||
|
|
||||||
if (!menu)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
list = (file_list_t*)data;
|
|
||||||
menu_list = (file_list_t*)userdata;
|
|
||||||
|
|
||||||
if (!list || !menu_list)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
menu_list_clear(list);
|
|
||||||
push_perfcounter(menu, list, counters, num, ident);
|
|
||||||
|
|
||||||
menu_driver_populate_entries(path, label, type);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int deferred_push_core_counters(void *data, void *userdata,
|
static int deferred_push_core_counters(void *data, void *userdata,
|
||||||
const char *path, const char *label, unsigned type)
|
const char *path, const char *label, unsigned type)
|
||||||
{
|
{
|
||||||
return push_perfcounter_generic(data, userdata, path, label,
|
menu_displaylist_info_t info = {0};
|
||||||
perf_counters_libretro, perf_ptr_libretro,
|
|
||||||
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN, type);
|
info.list = (file_list_t*)data;
|
||||||
|
info.menu_list = (file_list_t*)userdata;
|
||||||
|
info.type = type;
|
||||||
|
strlcpy(info.path, path, sizeof(info.path));
|
||||||
|
strlcpy(info.label, label, sizeof(info.label));
|
||||||
|
|
||||||
|
return menu_displaylist_push_list(&info, DISPLAYLIST_PERFCOUNTERS_CORE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int deferred_push_frontend_counters(void *data, void *userdata,
|
static int deferred_push_frontend_counters(void *data, void *userdata,
|
||||||
const char *path, const char *label, unsigned type)
|
const char *path, const char *label, unsigned type)
|
||||||
{
|
{
|
||||||
return push_perfcounter_generic(data, userdata, path, label,
|
menu_displaylist_info_t info = {0};
|
||||||
perf_counters_rarch, perf_ptr_rarch,
|
|
||||||
MENU_SETTINGS_PERF_COUNTERS_BEGIN, type);
|
info.list = (file_list_t*)data;
|
||||||
|
info.menu_list = (file_list_t*)userdata;
|
||||||
|
info.type = type;
|
||||||
|
strlcpy(info.path, path, sizeof(info.path));
|
||||||
|
strlcpy(info.label, label, sizeof(info.label));
|
||||||
|
|
||||||
|
return menu_displaylist_push_list(&info, DISPLAYLIST_PERFCOUNTERS_FRONTEND);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int deferred_push_core_cheat_options(void *data, void *userdata,
|
static int deferred_push_core_cheat_options(void *data, void *userdata,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user