(Mobile) Don't enable threaded data runloop by default for mobile right now

- drains CPU right now
This commit is contained in:
twinaphex 2015-04-12 03:27:20 +02:00
parent 3e35593f59
commit 29ecd3b297
2 changed files with 7 additions and 1 deletions

View File

@ -407,6 +407,12 @@ static unsigned swap_interval = 1;
*/
static const bool video_threaded = false;
#ifdef HAVE_MOBILE
static const bool threaded_data_runloop_enable = false;
#else
static const bool threaded_data_runloop_enable = true;
#endif
/* Set to true if HW render cores should get their private context. */
static const bool video_shared_context = false;

View File

@ -5335,7 +5335,7 @@ static bool setting_append_list_menu_options(
settings->menu.threaded_data_runloop_enable,
"threaded_data_runloop_enable",
"Threaded data runloop",
true,
threaded_data_runloop_enable,
"OFF",
"ON",
group_info.name,