Re: Input: Hard-keys input support using libinput and weston 1.8.0

2015-11-05 Thread Peter Hutterer
On Mon, Nov 02, 2015 at 11:51:03AM +0530, Vikas Patil wrote: > On Mon, Nov 2, 2015 at 7:56 AM, Peter Hutterer > wrote: > > > > On Fri, Oct 30, 2015 at 11:43:34AM +0530, Vikas Patil wrote: > > > I have a requirement where Hard-Keys input events (e.g. Home button, Back > > > button, Volume buttons

Re: [PATCH weston 00/10] weston wayland-protocols migration

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 09:36:18PM -0800, Bryce Harrington wrote: > On Fri, Nov 06, 2015 at 10:39:12AM +0800, Jonas Ådahl wrote: > > On Thu, Nov 05, 2015 at 12:21:21PM +0200, Pekka Paalanen wrote: > > > On Wed, 4 Nov 2015 16:49:49 +0800 > > > Jonas Ådahl wrote: > > > > Things that seemed more wes

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 09:00:21PM -0800, Bryce Harrington wrote: > On Fri, Nov 06, 2015 at 10:51:09AM +0800, Jonas Ådahl wrote: > > On Thu, Nov 05, 2015 at 11:46:46AM -0800, Bryce Harrington wrote: > > > On Wed, Nov 04, 2015 at 04:49:50PM +0800, Jonas Ådahl wrote: > > > > Use the fullscreen-shell

Re: [PATCH weston 00/10] weston wayland-protocols migration

2015-11-05 Thread Bryce Harrington
On Fri, Nov 06, 2015 at 10:39:12AM +0800, Jonas Ådahl wrote: > On Thu, Nov 05, 2015 at 12:21:21PM +0200, Pekka Paalanen wrote: > > On Wed, 4 Nov 2015 16:49:49 +0800 > > Jonas Ådahl wrote: > > > Things that seemed more weston specific was weston_ prefixed. The > > > screenshooter protocol and the

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Bryce Harrington
On Fri, Nov 06, 2015 at 10:51:09AM +0800, Jonas Ådahl wrote: > On Thu, Nov 05, 2015 at 11:46:46AM -0800, Bryce Harrington wrote: > > On Wed, Nov 04, 2015 at 04:49:50PM +0800, Jonas Ådahl wrote: > > > Use the fullscreen-shell protocol XML from the wayland-protocols > > > installation, and remove the

[PATCH libinput 3/6] tablet: restrict tablet_axis_has_changed to axis/proximity events

2015-11-05 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- src/libinput.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/src/libinput.c b/src/libinput.c index c1f2700..e384d8d 100644 --- a/src/libinput.c +++ b/src/libinput.c @@ -914,6 +914,12 @@ LIBINPUT_EXPORT int libinput_event_tablet_axis_has_changed(struc

[PATCH libinput 4/6] tablet: allow tablet_get_x/y_transformed for proximity events as well

2015-11-05 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- src/libinput.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libinput.c b/src/libinput.c index e384d8d..a05148f 100644 --- a/src/libinput.c +++ b/src/libinput.c @@ -1027,7 +1027,8 @@ libinput_event_tablet_get_x_transformed(struct

[PATCH libinput 1/6] tablet: widen the serial type to uint64_t

2015-11-05 Thread Peter Hutterer
Internally we still use uint32_t because that's all we get from evdev. But eventually we'll have 64 bit serials. Signed-off-by: Peter Hutterer --- src/libinput.c | 2 +- src/libinput.h | 2 +- tools/event-debug.c | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/s

[PATCH libinput 2/6] tablet: use require_event_type instead of direct type check

2015-11-05 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- src/libinput.c | 36 +++- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/src/libinput.c b/src/libinput.c index 65dd0d9..c1f2700 100644 --- a/src/libinput.c +++ b/src/libinput.c @@ -925,9 +925,11 @@ libinput_event_t

[PATCH libinput 5/6] tools: add tablet support to event-gui

2015-11-05 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- tools/event-gui.c | 69 +++ 1 file changed, 69 insertions(+) diff --git a/tools/event-gui.c b/tools/event-gui.c index 19324a3..c07213f 100644 --- a/tools/event-gui.c +++ b/tools/event-gui.c @@ -85,6 +85,14 @@ s

[PATCH libinput 6/6] tablet: rename all tool types to LIBINPUT_TOOL_TYPE_*

2015-11-05 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- src/evdev-tablet.c | 54 ++--- src/evdev-tablet.h | 18 +- src/libinput.h | 27 ++- test/tablet.c | 8 tools/event-debug.c | 16 5 file

[PATCH weston 13/13] tablet: Remove tablet-specific tools on disconnect

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Store all tablets that a tool was used on in a list. When the tablet is removed, remove all tools only seen on this tablet. Tools without a serial number are only ever bound to one tablet. Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-o

[PATCH weston 12/13] tablet: Add demo application for tablets

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Note that this application does not follow best practices for handling tablet events. The events are grouped by frame, all processing should be done in the frame instead of the respective handler. A good toolkit would accumulate the data in the events and provide them

[PATCH weston 05/13] tablet: handle tablet cursors in the compositor

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul The tablet is given a separate cursor. Most tablet interaction is an absolute interaction and shouldn't need a cursor at all, but usually the cursor is used to indicate the type of virtual tool currently assigned. Co-authored-by: Peter Hutterer Signed-off-by: Stephen

[PATCH weston 07/13] client: Add tablet cursor support into libtoytoolkit

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Again, a lot of this is code that has been reused from the cursor code for pointers. Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- clients/window.c | 138 ++

[PATCH weston 02/13] tablet: add handling of tablet focus

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Closely modelled after the pointer focus handling Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- src/compositor.h | 10 +++ src/input.c | 82 2

[PATCH weston 08/13] client: Add support for tablet cursor motion to window frames in libtoytoolkit

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul When it comes to a window frame, a tablet tool and cursor act almost identical; they click things, drag things, etc. The tool type and extra axes don't serve any use in the context of a window frame, so tablet pointers share the frame_pointer structures used for the mo

[PATCH weston 03/13] tablet: add weston grab interfaces for tablet tools

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- src/compositor.h | 53 src/input.c | 253 +++ 2 files changed, 306 insertions(+) diff --git

[PATCH weston 11/13] tablet: Add binding to activate surfaces using the tablet tool

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- desktop-shell/shell.c | 14 ++ src/bindings.c| 39 ++- src/compositor.c | 1 + src/compositor.h

[PATCH weston 01/13] tablet: Add initial tablet support to weston

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Introduces two new structs, weston_tablet and weston_tablet_tool with the respective information as it's used on the protocol. Note that tools are independent of tablets, many tools can be used across multiple tablets. The nesting on the protocol level requires a glo

[PATCH weston 10/13] tablet: Add tablet support to the top panel of the desktop shell

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- clients/desktop-shell.c | 56 + 1 file changed, 56 insertions(+) diff --git a/clients/desktop-shell.c b/clients/de

[PATCH weston 06/13] clients: add support for handling tablets

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- clients/window.c | 472 +++ clients/window.h | 78 + 2 files changed, 550 insertions(+) diff --git a/

[PATCH weston 04/13] tablet: hook up libinput tablet events

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- src/libinput-device.c | 112 ++ 1 file changed, 112 insertions(+) diff --git a/src/libinput-device.c b/src/libinpu

[PATCH weston 00/13] Add tablet support

2015-11-05 Thread Peter Hutterer
This set adds support for graphics tablets to weston. It's not fully complete, there are a couple of fixmes in it but the patchset is getting a bit unwieldly. And there are some discussions on how to do things anyway. Note: This needs the tablet-support branch from libinput to work. And it is on

[PATCH weston 09/13] tablet: Add support for moving windows around using the stylus

2015-11-05 Thread Peter Hutterer
From: Stephen Chandler Paul Changing the pointer to the appropriate image while moving the stylus around isn't supported yet. Co-authored-by: Peter Hutterer Signed-off-by: Stephen Chandler Paul Signed-off-by: Peter Hutterer --- clients/window.c | 32 ++ desktop-shell/shell.c | 267

[PATCH wayland-protocols] Add the tablet protocol

2015-11-05 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- This is the revamped version of the tablet protocol for graphics tablets (e.g. Wacom tablets). Too many changes from the last version (a year ago or so), so I won't detail them, best to look at it with fresh eyes. Makefile.am| 1 +

Re: [PATCH weston 09/10] Rename screenshooter protocol to weston_screenshooter

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 04:35:15PM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:58 +0800 > Jonas Ådahl wrote: > > > Due to the effort of moving a way from non-prefixed protocols, rename > > the weston specific screenshooter protocol to weston_screenshooter. > > > > Signed-off-by: Jon

Re: [PATCH weston 08/10] desktop-shell: Rename protocol weston_desktop_shell

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 04:31:37PM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:57 +0800 > Jonas Ådahl wrote: > > > In the effort of going away from generic names of protocols only > > relevant for weston, rename the weston desktop shell > > weston_desktop_shell. > > > > This also re

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 11:46:46AM -0800, Bryce Harrington wrote: > On Wed, Nov 04, 2015 at 04:49:50PM +0800, Jonas Ådahl wrote: > > Use the fullscreen-shell protocol XML from the wayland-protocols > > installation, and remove the one we provide ourself. > > > > Signed-off-by: Jonas Ådahl > > > >

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 01:19:27PM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:50 +0800 > Jonas Ådahl wrote: > > > Use the fullscreen-shell protocol XML from the wayland-protocols > > installation, and remove the one we provide ourself. > > > > Signed-off-by: Jonas Ådahl > > --- >

Re: [PATCH weston 00/10] weston wayland-protocols migration

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 12:21:21PM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:49 +0800 > Jonas Ådahl wrote: > > > Hi, > > > > This series changes weston to depend on wayland-protocols for the > > majority of the protocols previously in the protocols/ directory. The > > protocols mo

Re: [PATCH weston 03/10] Use presentation timing protocol from wayland-protocols

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 01:57:45PM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:52 +0800 > Jonas Ådahl wrote: > > > Signed-off-by: Jonas Ådahl > > --- > > Makefile.am | 21 ++- > > clients/presentation-shm.c | 65 +- > > clients/weston-info.c

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Bill Spitzak
On Thu, Nov 5, 2015 at 11:46 AM, Bryce Harrington wrote: > > Hmm. With l's and 1's looking so similar in certain fonts, "shell1" is > going to look like a typo to some users. IMO it would be better to > distinguish this version number with at least an underscore. > "_shell_v1_" would feel more

Re: [PATCH v5 wayland] protocol: add wl_pointer.frame, axis_source, axis_stop, and axis_discrete

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 12:21:29PM -0600, Derek Foreman wrote: > On 04/11/15 07:24 PM, Jonas Ådahl wrote: > > On Thu, Nov 05, 2015 at 08:44:57AM +1000, Peter Hutterer wrote: > >> On Wed, Nov 04, 2015 at 09:57:35AM +0800, Jonas Ådahl wrote: > >>> On Wed, Oct 28, 2015 at 03:34:31PM +1000, Peter Hutte

Re: [PATCH wayland v2] Remove protocol/wayland.dtd

2015-11-05 Thread Peter Hutterer
On Thu, Nov 05, 2015 at 04:58:09PM +0200, Pekka Paalanen wrote: > On Mon, 19 Oct 2015 11:30:47 +1000 > Peter Hutterer wrote: > > > On Fri, Oct 16, 2015 at 11:42:21AM +0300, Pekka Paalanen wrote: > > > On Fri, 16 Oct 2015 12:29:11 +1000 > > > Peter Hutterer wrote: > > > > > > > On Fri, Oct 09, 2

Re: [PATCH wayland v2] Remove protocol/wayland.dtd

2015-11-05 Thread Peter Hutterer
On Thu, Nov 05, 2015 at 03:40:27PM +, Auke Booij wrote: > On 5 November 2015 at 14:58, Pekka Paalanen wrote: > > On Mon, 19 Oct 2015 11:30:47 +1000 > > Peter Hutterer wrote: > > > >> On Fri, Oct 16, 2015 at 11:42:21AM +0300, Pekka Paalanen wrote: > >> > On Fri, 16 Oct 2015 12:29:11 +1000 > >>

Re: [PATCH wayland 2/3] doc: make the doxygen output dependent on scanner.c

2015-11-05 Thread Bryce Harrington
On Fri, Nov 06, 2015 at 08:02:00AM +1000, Peter Hutterer wrote: > When the scanner changes, we need to rebuild > > Signed-off-by: Peter Hutterer Reviewed-by: Bryce Harrington > --- > doc/doxygen/Makefile.am | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/doc/doxyg

Re: [PATCH wayland 1/3] scanner: don't print trailing whitespaces

2015-11-05 Thread Bryce Harrington
On Fri, Nov 06, 2015 at 08:01:59AM +1000, Peter Hutterer wrote: > If we're printing a zero-length string, we end up printing " * " and that > makes anything unhappy that doesn't handle trailing whitespaces. > > Signed-off-by: Peter Hutterer Easy enough. Reviewed-by: Bryce Harrington > --- > s

[PATCH wayland 3/3] doc: generate doxygen html output from the scanner

2015-11-05 Thread Peter Hutterer
This switches the scanner to generate doxygen-compatible tags for the generated protocol headers, and hooks up the doxygen build to generate server and client-side API documentation. Each protocol is a separate doxygen @page, with each interface a @subpage. Wayland only has one protocol, wayland-p

[PATCH wayland 1/3] scanner: don't print trailing whitespaces

2015-11-05 Thread Peter Hutterer
If we're printing a zero-length string, we end up printing " * " and that makes anything unhappy that doesn't handle trailing whitespaces. Signed-off-by: Peter Hutterer --- src/scanner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scanner.c b/src/scanner.c index f45

[PATCH wayland 2/3] doc: make the doxygen output dependent on scanner.c

2015-11-05 Thread Peter Hutterer
When the scanner changes, we need to rebuild Signed-off-by: Peter Hutterer --- doc/doxygen/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/doxygen/Makefile.am b/doc/doxygen/Makefile.am index 5520d39..a8bb95f 100644 --- a/doc/doxygen/Makefile.am +++ b/doc/d

Re: [RFC wayland] doc: generate doxygen html output from the scanner

2015-11-05 Thread Tiago Vignatti
On 11/04/2015 09:44 PM, Peter Hutterer wrote: On Wed, Nov 04, 2015 at 03:30:29PM -0800, Bryce Harrington wrote: On Mon, Nov 02, 2015 at 10:27:54AM +1000, Peter Hutterer wrote: On Fri, Oct 30, 2015 at 03:40:33PM -0700, Bryce Harrington wrote: but: the current API docs in publican are useless. lo

Re: [PATCH weston 10/10] Remove workspaces protocol

2015-11-05 Thread Bryce Harrington
On Thu, Nov 05, 2015 at 10:28:53AM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:59 +0800 > Jonas Ådahl wrote: > > > It doesn't fill a useful function and is not intended to be continued. > > If there is need for workspace manipulation from clients a protocol > > based on those future

[PATCH v2 wayland 1/3] shm: Deprecate wl_shm_buffer_create()

2015-11-05 Thread Derek Foreman
From irc: it creates a wl_buffer object in a way that no client can ever access the storage. So, let's replace it with return NULL; and mark it with attribute deprecated in the header. Reviewed-by: Pekka Paalanen Signed-off-by: Derek Foreman --- Change from v1: return NULL instead of abo

[PATCH v2 wayland 3/3] shm: wl_shm_buffer_get_data() requires a valid pool.

2015-11-05 Thread Derek Foreman
There's no situation where a shm buffer without a pool makes sense, so we enforce the pool's existence a little more rigidly. Acked-by: Pekka Paalanen Signed-off-by: Derek Foreman --- src/wayland-shm.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/wayland-sh

[PATCH v2 wayland 2/3] shm: Move deprecated function to the bottom of the file

2015-11-05 Thread Derek Foreman
In wayland-server.c we group the deprecated functions and disable doxygen for them. Do that here too. Acked-by: Pekka Paalanen Signed-off-by: Derek Foreman --- Change from v1: return NULL instead of abort()ing src/wayland-shm.c | 25 + 1 file changed, 17 insertions(+),

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Bryce Harrington
On Wed, Nov 04, 2015 at 04:49:50PM +0800, Jonas Ådahl wrote: > Use the fullscreen-shell protocol XML from the wayland-protocols > installation, and remove the one we provide ourself. > > Signed-off-by: Jonas Ådahl > > diff --git a/clients/fullscreen.c b/clients/fullscreen.c > index 4fcca3d..be316

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Bryce Harrington
On Thu, Nov 05, 2015 at 01:19:27PM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:50 +0800 > Jonas Ådahl wrote: > > > Use the fullscreen-shell protocol XML from the wayland-protocols > > installation, and remove the one we provide ourself. > > > > Signed-off-by: Jonas Ådahl > > --- >

Re: [PATCH weston 00/10] weston wayland-protocols migration

2015-11-05 Thread Bryce Harrington
On Thu, Nov 05, 2015 at 12:21:21PM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:49 +0800 > Jonas Ådahl wrote: > > > Hi, > > > > This series changes weston to depend on wayland-protocols for the > > majority of the protocols previously in the protocols/ directory. The > > protocols mo

Re: [PATCH weston] Support axis source, axis discreet, axis frame and axis stop events

2015-11-05 Thread Derek Foreman
On 15/10/15 09:39 PM, Peter Hutterer wrote: > Signed-off-by: Peter Hutterer > --- > The client-side is the simplest implementation here, and I went the easy > route since most clients won't care to register a multitude of handlers for > axis events. > > The eventdemo client merely prints the even

Re: [PATCH v5 wayland] protocol: add wl_pointer.frame, axis_source, axis_stop, and axis_discrete

2015-11-05 Thread Derek Foreman
On 04/11/15 07:24 PM, Jonas Ådahl wrote: > On Thu, Nov 05, 2015 at 08:44:57AM +1000, Peter Hutterer wrote: >> On Wed, Nov 04, 2015 at 09:57:35AM +0800, Jonas Ådahl wrote: >>> On Wed, Oct 28, 2015 at 03:34:31PM +1000, Peter Hutterer wrote: >> [...] + + + Indicates the end o

Re: [PATCH weston] tests: Adding simple waycheck validation tool.

2015-11-05 Thread Jon A. Cruz
On 11/05/2015 10:17 AM, Pekka Paalanen wrote: > On Fri, 16 Oct 2015 12:23:47 -0700 > "Jon A. Cruz" wrote: > >> On 10/15/2015 01:51 AM, Pekka Paalanen wrote: >>> I think it's better to land this stuff in pieces than massage a >>> humongous replace-the-world patch series, if we can tell the piece

Re: [PATCH wayland v2] Remove protocol/wayland.dtd

2015-11-05 Thread Auke Booij
On 5 November 2015 at 14:58, Pekka Paalanen wrote: > On Mon, 19 Oct 2015 11:30:47 +1000 > Peter Hutterer wrote: > >> On Fri, Oct 16, 2015 at 11:42:21AM +0300, Pekka Paalanen wrote: >> > On Fri, 16 Oct 2015 12:29:11 +1000 >> > Peter Hutterer wrote: >> > >> > > On Fri, Oct 09, 2015 at 01:16:49PM +

Re: [PATCH weston] tests: Adding simple waycheck validation tool.

2015-11-05 Thread Pekka Paalanen
On Fri, 16 Oct 2015 12:23:47 -0700 "Jon A. Cruz" wrote: > On 10/15/2015 01:51 AM, Pekka Paalanen wrote: > > I think it's better to land this stuff in pieces than massage a > > humongous replace-the-world patch series, if we can tell the pieces are > > going in the right direction. The bits here a

Re: [PATCH wayland v2] Remove protocol/wayland.dtd

2015-11-05 Thread Pekka Paalanen
On Mon, 19 Oct 2015 11:30:47 +1000 Peter Hutterer wrote: > On Fri, Oct 16, 2015 at 11:42:21AM +0300, Pekka Paalanen wrote: > > On Fri, 16 Oct 2015 12:29:11 +1000 > > Peter Hutterer wrote: > > > > > On Fri, Oct 09, 2015 at 01:16:49PM +0200, Nils Chr. Brause wrote: > > > > Hi, > > > > > > > > Re

Re: [PATCH weston 09/10] Rename screenshooter protocol to weston_screenshooter

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:58 +0800 Jonas Ådahl wrote: > Due to the effort of moving a way from non-prefixed protocols, rename > the weston specific screenshooter protocol to weston_screenshooter. > > Signed-off-by: Jonas Ådahl > --- > Makefile.am | 14 +++--- > cl

Re: [PATCH weston 08/10] desktop-shell: Rename protocol weston_desktop_shell

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:57 +0800 Jonas Ådahl wrote: > In the effort of going away from generic names of protocols only > relevant for weston, rename the weston desktop shell > weston_desktop_shell. > > This also resets the version to 1, as there will be no prior versions > to weston_desktop_sh

Re: [PATCH weston 07/10] Use xdg_shell protocol from wayland-protocols

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:56 +0800 Jonas Ådahl wrote: > Signed-off-by: Jonas Ådahl > --- > Makefile.am| 29 ++- > protocol/xdg-shell.xml | 616 > - > 2 files changed, 14 insertions(+), 631 deletions(-) > delete mode 100644 protocol/

Re: [PATCH weston 03/10] Use presentation timing protocol from wayland-protocols

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:52 +0800 Jonas Ådahl wrote: > Signed-off-by: Jonas Ådahl > --- > Makefile.am | 21 ++- > clients/presentation-shm.c | 65 +- > clients/weston-info.c| 19 +-- > protocol/presentation_timing.xml | 274 > -

Re: [PATCH weston 02/10] Use linux-dmabuf protocol from wayland-protocols

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:51 +0800 Jonas Ådahl wrote: > Signed-off-by: Jonas Ådahl > --- > Makefile.am | 13 +-- > clients/simple-dmabuf.c | 56 +- > protocol/linux-dmabuf.xml | 274 > -- > src/gl-renderer.c | 6 +-

Re: [PATCH weston 01/10] Use fullscreen-shell.xml from wayland-protocols

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:50 +0800 Jonas Ådahl wrote: > Use the fullscreen-shell protocol XML from the wayland-protocols > installation, and remove the one we provide ourself. > > Signed-off-by: Jonas Ådahl > --- > Makefile.am | 44 +--- > clients/fullscreen.c

Re: [PATCH weston 00/10] weston wayland-protocols migration

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:49 +0800 Jonas Ådahl wrote: > Hi, > > This series changes weston to depend on wayland-protocols for the > majority of the protocols previously in the protocols/ directory. The > protocols moved are also renamed to comply with the unstable naming > conventions of wayland

Re: [PATCH weston 10/10] Remove workspaces protocol

2015-11-05 Thread Jonas Ådahl
On Thu, Nov 05, 2015 at 10:28:53AM +0200, Pekka Paalanen wrote: > On Wed, 4 Nov 2015 16:49:59 +0800 > Jonas Ådahl wrote: > > > It doesn't fill a useful function and is not intended to be continued. > > If there is need for workspace manipulation from clients a protocol > > based on those future

Re: [PATCH weston 10/10] Remove workspaces protocol

2015-11-05 Thread Pekka Paalanen
On Wed, 4 Nov 2015 16:49:59 +0800 Jonas Ådahl wrote: > It doesn't fill a useful function and is not intended to be continued. > If there is need for workspace manipulation from clients a protocol > based on those future needs need to be properly designed. > workspaces.xml is probably not very re