mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-31 00:22:31 +00:00
(driver.c) Cleanups
This commit is contained in:
parent
7660b67ad4
commit
94c042f686
10
driver.c
10
driver.c
@ -443,6 +443,11 @@ bool driver_ctl(enum driver_ctl_state state, void *data)
|
||||
uninit_drivers(*flags);
|
||||
}
|
||||
break;
|
||||
case RARCH_DRIVER_CTL_UNINIT_ALL:
|
||||
{
|
||||
int flags = DRIVERS_CMD_ALL;
|
||||
return driver_ctl(RARCH_DRIVER_CTL_UNINIT, &flags);
|
||||
}
|
||||
case RARCH_DRIVER_CTL_INIT:
|
||||
{
|
||||
int *flags = (int*)data;
|
||||
@ -451,6 +456,11 @@ bool driver_ctl(enum driver_ctl_state state, void *data)
|
||||
init_drivers(*flags);
|
||||
}
|
||||
break;
|
||||
case RARCH_DRIVER_CTL_INIT_ALL:
|
||||
{
|
||||
int flags = DRIVERS_CMD_ALL;
|
||||
return driver_ctl(RARCH_DRIVER_CTL_INIT, &flags);
|
||||
}
|
||||
case RARCH_DRIVER_CTL_INIT_PRE:
|
||||
audio_driver_ctl(RARCH_AUDIO_CTL_FIND_DRIVER, NULL);
|
||||
video_driver_ctl(RARCH_DISPLAY_CTL_FIND_DRIVER, NULL);
|
||||
|
5
driver.h
5
driver.h
@ -172,10 +172,15 @@ enum driver_ctl_state
|
||||
* @data is a bitmask which determines
|
||||
* which drivers get deinitialized. */
|
||||
RARCH_DRIVER_CTL_UNINIT,
|
||||
|
||||
RARCH_DRIVER_CTL_UNINIT_ALL,
|
||||
|
||||
/* Initializes drivers.
|
||||
* @data is a bitmask which determines
|
||||
* which drivers get initialized. */
|
||||
RARCH_DRIVER_CTL_INIT,
|
||||
|
||||
RARCH_DRIVER_CTL_INIT_ALL,
|
||||
/* Attempts to find a default driver for
|
||||
* all driver types.
|
||||
*
|
||||
|
40
retroarch.c
40
retroarch.c
@ -1224,7 +1224,6 @@ bool rarch_game_options_validate(char *s, size_t len, bool mkdir)
|
||||
static int rarch_main_init(int argc, char *argv[])
|
||||
{
|
||||
int sjlj_ret;
|
||||
int flags = DRIVERS_CMD_ALL;
|
||||
bool *verbosity = NULL;
|
||||
|
||||
init_state();
|
||||
@ -1305,7 +1304,7 @@ static int rarch_main_init(int argc, char *argv[])
|
||||
if (!event_cmd_ctl(EVENT_CMD_CORE_INIT, ¤t_core_type))
|
||||
goto error;
|
||||
|
||||
driver_ctl(RARCH_DRIVER_CTL_INIT, &flags);
|
||||
driver_ctl(RARCH_DRIVER_CTL_INIT_ALL, NULL);
|
||||
event_cmd_ctl(EVENT_CMD_COMMAND_INIT, NULL);
|
||||
event_cmd_ctl(EVENT_CMD_REMOTE_INIT, NULL);
|
||||
event_cmd_ctl(EVENT_CMD_REWIND_INIT, NULL);
|
||||
@ -1377,33 +1376,26 @@ bool rarch_ctl(enum rarch_ctl_state state, void *data)
|
||||
rarch_is_inited = true;
|
||||
break;
|
||||
case RARCH_CTL_DESTROY:
|
||||
{
|
||||
int flags = DRIVERS_CMD_ALL;
|
||||
has_set_username = false;
|
||||
rarch_is_inited = false;
|
||||
rarch_error_on_init = false;
|
||||
rarch_block_config_read = false;
|
||||
rarch_force_fullscreen = false;
|
||||
|
||||
has_set_username = false;
|
||||
rarch_is_inited = false;
|
||||
rarch_error_on_init = false;
|
||||
rarch_block_config_read = false;
|
||||
rarch_force_fullscreen = false;
|
||||
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_DEINIT, NULL);
|
||||
driver_ctl(RARCH_DRIVER_CTL_UNINIT_ALL, NULL);
|
||||
event_cmd_ctl(EVENT_CMD_LOG_FILE_DEINIT, NULL);
|
||||
|
||||
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_DEINIT, NULL);
|
||||
driver_ctl(RARCH_DRIVER_CTL_UNINIT, &flags);
|
||||
event_cmd_ctl(EVENT_CMD_LOG_FILE_DEINIT, NULL);
|
||||
|
||||
runloop_ctl(RUNLOOP_CTL_STATE_FREE, NULL);
|
||||
runloop_ctl(RUNLOOP_CTL_GLOBAL_FREE, NULL);
|
||||
runloop_ctl(RUNLOOP_CTL_DATA_DEINIT, NULL);
|
||||
config_free();
|
||||
}
|
||||
runloop_ctl(RUNLOOP_CTL_STATE_FREE, NULL);
|
||||
runloop_ctl(RUNLOOP_CTL_GLOBAL_FREE, NULL);
|
||||
runloop_ctl(RUNLOOP_CTL_DATA_DEINIT, NULL);
|
||||
config_free();
|
||||
break;
|
||||
case RARCH_CTL_DEINIT:
|
||||
{
|
||||
int flags = DRIVERS_CMD_ALL;
|
||||
if (!rarch_ctl(RARCH_CTL_IS_INITED, NULL))
|
||||
return false;
|
||||
if (!rarch_ctl(RARCH_CTL_IS_INITED, NULL))
|
||||
return false;
|
||||
|
||||
driver_ctl(RARCH_DRIVER_CTL_UNINIT, &flags);
|
||||
}
|
||||
driver_ctl(RARCH_DRIVER_CTL_UNINIT_ALL, NULL);
|
||||
break;
|
||||
case RARCH_CTL_PREINIT:
|
||||
if (!config_realloc())
|
||||
|
Loading…
x
Reference in New Issue
Block a user