1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-16 12:39:59 +00:00

Add menu_texture_item

This commit is contained in:
twinaphex 2016-03-05 08:40:28 +01:00
parent 72303888c8
commit 1742b96ec0
4 changed files with 8 additions and 12 deletions

@ -68,8 +68,6 @@ enum
#define MUI_SYSTEM_TAB_END MUI_SYSTEM_TAB_SETTINGS
typedef uintptr_t mui_texture_item;
typedef struct mui_handle
{
unsigned tabs_height;
@ -88,8 +86,8 @@ typedef struct mui_handle
float alpha;
} arrow;
mui_texture_item bg;
mui_texture_item list[MUI_TEXTURE_LAST];
menu_texture_item bg;
menu_texture_item list[MUI_TEXTURE_LAST];
uintptr_t white;
} textures;

@ -134,8 +134,6 @@ enum
#define XMB_SYSTEM_TAB_END XMB_SYSTEM_TAB_HISTORY
#endif
typedef uintptr_t xmb_texture_item;
typedef struct xmb_handle
{
file_list_t *menu_stack_old;
@ -190,8 +188,8 @@ typedef struct xmb_handle
float alpha;
} arrow;
xmb_texture_item bg;
xmb_texture_item list[XMB_TEXTURE_LAST];
menu_texture_item bg;
menu_texture_item list[XMB_TEXTURE_LAST];
} textures;
struct

@ -56,8 +56,6 @@
#define ZUI_ITEM_SIZE_PX 54
#define NPARTICLES 100
typedef uintptr_t zarch_texture_item;
enum zarch_zui_input_state
{
MENU_ZARCH_MOUSE_X = 0,
@ -131,8 +129,8 @@ typedef struct zarch_handle
struct
{
zarch_texture_item bg;
zarch_texture_item white;
menu_texture_item bg;
menu_texture_item white;
} textures;
/* LAY_ROOT's "Recent" */

@ -169,6 +169,8 @@ typedef struct menu_display_ctx_font
float size;
} menu_display_ctx_font_t;
typedef uintptr_t menu_texture_item;
bool menu_display_ctl(enum menu_display_ctl_state state, void *data);
void menu_display_handle_wallpaper_upload(void *task_data,