From 683c082d4511e4967e00df6d7cdb971dade31cf2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 15 Apr 2015 20:11:43 +0200 Subject: [PATCH] Enable threaded data runloop by default when HAVE_THREADS is defined --- config.def.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.def.h b/config.def.h index 8ad7417bd3..75a98ec87f 100644 --- a/config.def.h +++ b/config.def.h @@ -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;