Get rid of some RMenu context callbacks

This commit is contained in:
twinaphex 2013-03-10 15:26:49 +01:00
parent d74b7156fa
commit 522320a654
3 changed files with 0 additions and 12 deletions

View File

@ -481,11 +481,8 @@ const gfx_ctx_driver_t gfx_ctx_ps3 = {
NULL,
"ps3",
#ifdef HAVE_RMENU
NULL,
NULL,
gfx_ctx_get_available_resolutions,
gfx_ctx_check_resolution,
NULL,
gfx_ctx_rmenu_init,
gfx_ctx_rmenu_frame,
gfx_ctx_rmenu_free,
@ -494,8 +491,6 @@ const gfx_ctx_driver_t gfx_ctx_ps3 = {
gfx_ctx_ps3_set_default_pos,
rmenu_ctx_ps3_screenshot_enable,
rmenu_ctx_ps3_screenshot_dump,
NULL,
NULL,
#endif
};

View File

@ -469,7 +469,5 @@ const gfx_ctx_driver_t gfx_ctx_xdk = {
gfx_ctx_xdk_menu_set_default_pos,
gfx_ctx_xdk_menu_screenshot_enable,
gfx_ctx_xdk_menu_screenshot_dump,
NULL,
NULL,
#endif
};

View File

@ -118,11 +118,8 @@ typedef struct gfx_ctx_driver
const char *ident;
#if defined(HAVE_RMENU)
void (*set_blend)(bool enable);
void (*set_filtering)(unsigned index, bool set_smooth);
void (*get_available_resolutions)(void);
int (*check_resolution)(unsigned resolution_id);
void (*set_fbo)(unsigned);
bool (*rmenu_init)(void);
void (*rmenu_frame)(void *data);
void (*rmenu_free)(void);
@ -131,8 +128,6 @@ typedef struct gfx_ctx_driver
void (*rmenu_set_default_pos)(rmenu_default_positions_t *position);
void (*rmenu_screenshot_enable)(bool enable);
void (*rmenu_screenshot_dump)(void *data);
const char *(*drive_mapping_previous)(void);
const char *(*drive_mapping_next)(void);
#endif
} gfx_ctx_driver_t;