diff --git a/gfx/context/ps3_ctx.c b/gfx/context/ps3_ctx.c index 318268e59c..4570cc37f0 100644 --- a/gfx/context/ps3_ctx.c +++ b/gfx/context/ps3_ctx.c @@ -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 }; diff --git a/gfx/context/xdk_ctx.c b/gfx/context/xdk_ctx.c index 6d78b53b2c..2881bc4835 100644 --- a/gfx/context/xdk_ctx.c +++ b/gfx/context/xdk_ctx.c @@ -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 }; diff --git a/gfx/gfx_context.h b/gfx/gfx_context.h index 023bc73589..d7c2b8bd82 100644 --- a/gfx/gfx_context.h +++ b/gfx/gfx_context.h @@ -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;