Re: [PATCH weston RFC] compositor-wayland: Support building without EGL

2017-01-17 Thread Daniel Stone
Hi, On 10 December 2016 at 00:21, Daniel Stone wrote: > On 9 December 2016 at 21:58, Armin Krezović wrote: >> +#ifdef ENABLE_EGL /* Defined but not used */ >> +#ifdef ENABLE_EGL /* Force pixman when EGL support is disabled */ >> b->use_pixman = new_config->use_pixman; >> +#else >> +

Re: [PATCH weston RFC] compositor-wayland: Support building without EGL

2016-12-09 Thread Daniel Stone
Hi Armin, On 9 December 2016 at 21:58, Armin Krezović wrote: > +#ifdef ENABLE_EGL /* Defined but not used */ > +#ifdef ENABLE_EGL /* Force pixman when EGL support is disabled */ > b->use_pixman = new_config->use_pixman; > +#else > + b->use_pixman = true; > +#endif Bikeshedding a bi

[PATCH weston RFC] compositor-wayland: Support building without EGL

2016-12-09 Thread Armin Krezović
Signed-off-by: Armin Krezović --- Makefile.am| 1 + configure.ac | 9 ++--- libweston/compositor-wayland.c | 23 ++- 3 files changed, 29 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2219e3d5..704d17af 1