(Mobile) Don't enable threaded data runloop by default for mobile right now
- drains CPU right now
This commit is contained in:
parent
3e35593f59
commit
29ecd3b297
|
@ -407,6 +407,12 @@ static unsigned swap_interval = 1;
|
||||||
*/
|
*/
|
||||||
static const bool video_threaded = false;
|
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. */
|
/* Set to true if HW render cores should get their private context. */
|
||||||
static const bool video_shared_context = false;
|
static const bool video_shared_context = false;
|
||||||
|
|
||||||
|
|
|
@ -5335,7 +5335,7 @@ static bool setting_append_list_menu_options(
|
||||||
settings->menu.threaded_data_runloop_enable,
|
settings->menu.threaded_data_runloop_enable,
|
||||||
"threaded_data_runloop_enable",
|
"threaded_data_runloop_enable",
|
||||||
"Threaded data runloop",
|
"Threaded data runloop",
|
||||||
true,
|
threaded_data_runloop_enable,
|
||||||
"OFF",
|
"OFF",
|
||||||
"ON",
|
"ON",
|
||||||
group_info.name,
|
group_info.name,
|
||||||
|
|
Loading…
Reference in New Issue