Re: [RFC wayland-protocols] input-method: Add zwp-input-method-v2

2018-08-07 Thread Silvan Jegen
Hi Just some typos I found (for now): On Mon, Aug 06, 2018 at 03:00:21PM +0200, Dorota Czaplejewicz wrote: > This protocol is based on v1, and current text-input-v3. > > The pieces passing data relevant to the application on the other side of the > compositor are a mirror copy of text-input-v3

[ANNOUNCE] Weston now uses GitLab for review

2018-08-07 Thread Daniel Stone
Hi all, Weston is now using GitLab merge requests for patch submission and review, rather than the mailing list and Patchwork. \o/ The contribution guide covers how to create a merge request and the review process in general:

Re: [PATCH weston 3/5] README: Move to Markdown, rewrite introduction

2018-08-07 Thread Daniel Stone
Hi Pekka, On Tue, 7 Aug 2018 at 14:25, Pekka Paalanen wrote: > On Mon, 6 Aug 2018 12:09:22 +0100 Daniel Stone wrote: > > Move the README file to Markdown, and update it to attempt to explain > > the current status and use of Weston. > > > > The first sections are user-facing, so they can

[PATCH weston 1/3] libweston: Remove signals from the list during de-init

2018-08-07 Thread Harsha M M
During de-init ensure removal of added signals from list. Otherwise a dongling pointer is left behind which will affect other plugins. Signed-off-by: Harsha M M --- compositor/text-backend.c | 3 +++ compositor/weston-screenshooter.c | 2 ++ desktop-shell/shell.c | 1 + 3

[PATCH weston 3/3] ivi-shell: clean up remaining ivisurface during de-init

2018-08-07 Thread Harsha M M
Signed-off-by: Harsha M M --- ivi-shell/ivi-shell.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ivi-shell/ivi-shell.c b/ivi-shell/ivi-shell.c index 58f53bc..92e8f17 100644 --- a/ivi-shell/ivi-shell.c +++ b/ivi-shell/ivi-shell.c @@ -366,6 +366,8 @@ shell_destroy(struct wl_listener

[PATCH weston 2/3] ivi-shell: Remove the compositor destory listener from list during de-init

2018-08-07 Thread Harsha M M
During de-init ensure removal of compositor destroy notification from list. Otherwise a dongling pointer is left behind which will affect other plugins. Signed-off-by: Harsha M M --- ivi-shell/ivi-shell.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ivi-shell/ivi-shell.c

[PATCH weston 0/3] Fix invalid memory access during de-init

2018-08-07 Thread Harsha M M
valgrind reports several invalid memory access during shutdown of weston. In general problem is with components which do not remove the signals added using wl_signal_emit, but free their memory. This patch series fixes invalid memory access during shutdown of weston Harsha M M (3): libweston:

Re: [PATCH wayland 5/5] contributing: Weston now uses GitLab MRs

2018-08-07 Thread Pekka Paalanen
On Mon, 6 Aug 2018 12:09:24 +0100 Daniel Stone wrote: > Note that Weston uses GitLab MRs for review, not mail. > > Signed-off-by: Daniel Stone > --- > CONTRIBUTING.md | 18 +++--- > 1 file changed, 11 insertions(+), 7 deletions(-) > > diff --git a/CONTRIBUTING.md

Re: [PATCH weston 3/5] README: Move to Markdown, rewrite introduction

2018-08-07 Thread Pekka Paalanen
On Mon, 6 Aug 2018 12:09:22 +0100 Daniel Stone wrote: > Move the README file to Markdown, and update it to attempt to explain > the current status and use of Weston. > > The first sections are user-facing, so they can quickly understand what > Weston is, what it does, what it doesn't do, and

Re: [PATCH weston v5 06/14] compositor: offer logs via weston-debug

2018-08-07 Thread Pekka Paalanen
On Mon, 6 Aug 2018 14:20:51 +0300 Pekka Paalanen wrote: > On Fri, 20 Jul 2018 20:03:27 +0100 > Daniel Stone wrote: > > > From: Pekka Paalanen > > > > This registers a new weston-debug scope "log" through which one can get > > live log output interspersed with possible other debugging prints.

Re: [PATCH weston v5 14/14] compositor-drm: Add drm-backend log debug scope

2018-08-07 Thread Pekka Paalanen
On Fri, 20 Jul 2018 20:03:35 +0100 Daniel Stone wrote: > Add a 'drm-debug' scope which prints verbose information about the DRM > backend's repaint cycle, including the decision tree on how views are > assigned (or not) to planes. > > Signed-off-by: Daniel Stone > --- >

Re: [PATCH weston v5 13/14] compositor-drm: Calculate atomic-commit flags earlier

2018-08-07 Thread Pekka Paalanen
On Fri, 20 Jul 2018 20:03:34 +0100 Daniel Stone wrote: > Shift up our calculation of the flags we use for atomic commits. We will > later use this to differentiate between test-only and full commits when > printing debug information inside drm_output_state_apply_atomic. > > Signed-off-by:

Re: [PATCH] client: Allow send error recovery without an abort

2018-08-07 Thread Pekka Paalanen
On Mon, 6 Aug 2018 14:54:16 -0700 Lloyd Pique wrote: > Hi Pekka, > > Sorry for the lack of any updates for (over) a month. I was on holiday for > a while, and had a few other things come up delaying me from getting back > to this. Hi, so was I! :-) > > I've created a first set of patches