mirror of
https://github.com/libretro/RetroArch
synced 2025-02-19 12:41:00 +00:00
Add menu_texture_item
This commit is contained in:
parent
72303888c8
commit
1742b96ec0
@ -68,8 +68,6 @@ enum
|
|||||||
|
|
||||||
#define MUI_SYSTEM_TAB_END MUI_SYSTEM_TAB_SETTINGS
|
#define MUI_SYSTEM_TAB_END MUI_SYSTEM_TAB_SETTINGS
|
||||||
|
|
||||||
typedef uintptr_t mui_texture_item;
|
|
||||||
|
|
||||||
typedef struct mui_handle
|
typedef struct mui_handle
|
||||||
{
|
{
|
||||||
unsigned tabs_height;
|
unsigned tabs_height;
|
||||||
@ -88,8 +86,8 @@ typedef struct mui_handle
|
|||||||
float alpha;
|
float alpha;
|
||||||
} arrow;
|
} arrow;
|
||||||
|
|
||||||
mui_texture_item bg;
|
menu_texture_item bg;
|
||||||
mui_texture_item list[MUI_TEXTURE_LAST];
|
menu_texture_item list[MUI_TEXTURE_LAST];
|
||||||
uintptr_t white;
|
uintptr_t white;
|
||||||
} textures;
|
} textures;
|
||||||
|
|
||||||
|
@ -134,8 +134,6 @@ enum
|
|||||||
#define XMB_SYSTEM_TAB_END XMB_SYSTEM_TAB_HISTORY
|
#define XMB_SYSTEM_TAB_END XMB_SYSTEM_TAB_HISTORY
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef uintptr_t xmb_texture_item;
|
|
||||||
|
|
||||||
typedef struct xmb_handle
|
typedef struct xmb_handle
|
||||||
{
|
{
|
||||||
file_list_t *menu_stack_old;
|
file_list_t *menu_stack_old;
|
||||||
@ -190,8 +188,8 @@ typedef struct xmb_handle
|
|||||||
float alpha;
|
float alpha;
|
||||||
} arrow;
|
} arrow;
|
||||||
|
|
||||||
xmb_texture_item bg;
|
menu_texture_item bg;
|
||||||
xmb_texture_item list[XMB_TEXTURE_LAST];
|
menu_texture_item list[XMB_TEXTURE_LAST];
|
||||||
} textures;
|
} textures;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
|
@ -56,8 +56,6 @@
|
|||||||
#define ZUI_ITEM_SIZE_PX 54
|
#define ZUI_ITEM_SIZE_PX 54
|
||||||
#define NPARTICLES 100
|
#define NPARTICLES 100
|
||||||
|
|
||||||
typedef uintptr_t zarch_texture_item;
|
|
||||||
|
|
||||||
enum zarch_zui_input_state
|
enum zarch_zui_input_state
|
||||||
{
|
{
|
||||||
MENU_ZARCH_MOUSE_X = 0,
|
MENU_ZARCH_MOUSE_X = 0,
|
||||||
@ -131,8 +129,8 @@ typedef struct zarch_handle
|
|||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
zarch_texture_item bg;
|
menu_texture_item bg;
|
||||||
zarch_texture_item white;
|
menu_texture_item white;
|
||||||
} textures;
|
} textures;
|
||||||
|
|
||||||
/* LAY_ROOT's "Recent" */
|
/* LAY_ROOT's "Recent" */
|
||||||
|
@ -169,6 +169,8 @@ typedef struct menu_display_ctx_font
|
|||||||
float size;
|
float size;
|
||||||
} menu_display_ctx_font_t;
|
} menu_display_ctx_font_t;
|
||||||
|
|
||||||
|
typedef uintptr_t menu_texture_item;
|
||||||
|
|
||||||
bool menu_display_ctl(enum menu_display_ctl_state state, void *data);
|
bool menu_display_ctl(enum menu_display_ctl_state state, void *data);
|
||||||
|
|
||||||
void menu_display_handle_wallpaper_upload(void *task_data,
|
void menu_display_handle_wallpaper_upload(void *task_data,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user