[PATCH weston v3] clients: Add XKB compose key support

2016-10-10 Thread Bryce Harrington
This adds single-symbol compose support using libxkbcommon's compose functionality. E.g., assuming you have the right alt key defined as your compose key, typing +i+' will produce í, and +y+= will produce ¥. This makes compose key work for weston-editor, weston-terminal, weston-eventdemo, and any

Re: [PATCH weston v2] clients: Add a weston-autorotator client and rotator protocol

2016-10-10 Thread Pekka Paalanen
On Mon, 8 Aug 2016 15:41:04 +0100 Emmanuel Gil Peyrot wrote: > This client uses libiio to retrieve accelerometer values from the iio > subsystem on Linux (and maybe some other kernels), and automatically > rotate the output whenever orientation changed. > > I tested it with a mma8453 accelerome

Re: [PATCH weston 03/10] compositor-wayland: Convert fullscreen flag to bool

2016-10-10 Thread Quentin Glidic
On 09/10/2016 17:30, Armin Krezović wrote: Signed-off-by: Armin Krezović You are missing the compositor/main.c change in this one. Patches 1, 2 and 4 are Rb me, and pushed: 00a03d2..2d321e3 master -> master Cheers, --- libweston/compositor-wayland.c | 2 +- libweston/compositor-wayland.

Re: [PATCH weston 4/4] compositor: Implement horizontal output layout configuration

2016-10-10 Thread Pekka Paalanen
On Sun, 9 Oct 2016 19:30:11 +0200 Armin Krezović wrote: > On 07.10.2016 12:19, Pekka Paalanen wrote: > > On Fri, 30 Sep 2016 23:25:30 +0200 > > Armin Krezović wrote: > > > >> This patch adds horizontal output layout configuration using > >> the previously added code. > >> > >> When an output

Re: [PATCH weston 3/4] compositor: Add internal output object used for layout configuration

2016-10-10 Thread Pekka Paalanen
On Sun, 9 Oct 2016 19:21:57 +0200 Armin Krezović wrote: > On 07.10.2016 12:08, Pekka Paalanen wrote: > > On Fri, 30 Sep 2016 23:25:29 +0200 > > Armin Krezović wrote: > > > >> This adds weston specific output object, which contains information > >> about output's position, relative to other ou

Re: [PATCH weston 2/4] weston: Move output position setting to compositor

2016-10-10 Thread Pekka Paalanen
On Sun, 9 Oct 2016 19:04:19 +0200 Armin Krezović wrote: > On 07.10.2016 11:58, Pekka Paalanen wrote: > > On Fri, 30 Sep 2016 23:25:28 +0200 > > Armin Krezović wrote: > > > >> This moves current output positioning code and scale/transform > >> application to the compositor itself, so the compo

Re: [PATCH weston 1/4] libweston: Export weston_output_transform_scale_init

2016-10-10 Thread Pekka Paalanen
On Sun, 9 Oct 2016 19:01:12 +0200 Armin Krezović wrote: > On 07.10.2016 11:52, Pekka Paalanen wrote: > > On Fri, 30 Sep 2016 23:25:27 +0200 > > Armin Krezović wrote: > > > >> This is required for implementing output layout setting > >> which relies on current output width and height, and > >>

Re: [PATCH weston v2 3/3] compositor-drm: Support linux_dmabuf output for sprite planes without gbm

2016-10-10 Thread Fabien DESSENNE
Hi, Please find below a comment. Fabien On 09/30/2016 11:28 AM, Tomohito Esaki wrote: > Multiplanar formats are supported by using drmModeAddFB2 and bypassing > gbm. If drmModeAddFB2 isn't available, the existing gbm bo import path > is used and multiplanar formats are unsupported. > > Signed