Enable threaded data runloop by default when HAVE_THREADS is

defined
This commit is contained in:
twinaphex 2015-04-15 20:11:43 +02:00
parent 8dd265bbad
commit 683c082d45

View file

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