[PATCH v4 wayland-protocols] Add the tablet protocol

2016-02-28 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- Changes to v3: - typo fixes as pointed out by daniels - clarify tablet/seat destroy() requests - they only affect the wayland object. and because of that: - destroy is now allowed before a remove event - reference proximity_out from tool.destroy() to clarify but

Re: [PATCH v3 wayland-protocols] Add the tablet protocol

2016-02-28 Thread Peter Hutterer
On Thu, Feb 18, 2016 at 12:00:09PM +, Daniel Stone wrote: > Hi, > No real opinion on the angles/units thing, and indeed we can't really > add native 64-bit integers now (even if we did, it rapidly descends > into a padding/alignment nightmare; much easier to keep _everything_ > on the wire as 3

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

2016-02-28 Thread Peter Hutterer
On Fri, Feb 26, 2016 at 05:00:15PM +0200, Pekka Paalanen wrote: > On Mon, 22 Feb 2016 08:57:47 +1000 > Peter Hutterer wrote: > > > This switches the scanner to generate doxygen-compatible tags for the > > generated protocol headers, and hooks up the doxygen build to generate > > server > > and c

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

2016-02-28 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. That documentation is now in Client/ and Server/, respectively. Each protocol is a separate doxygen @page, with eac

[ANNOUNCE] libinput 1.2.1

2016-02-28 Thread Peter Hutterer
libinput 1.2.1 is now available. This provides one fix for touchpads: we added a patch in 1.2 to look at relative finger positions during gestures to decide whether a gesture would be a pinch or a swipe gesture. This caused some two-finger scrolls to be detected as pinch gesture (see bug 94264). Th

Re: Questions about experimental Spice compositor rebase

2016-02-28 Thread Yury Shvedov
Hi, Fabio! Your patient interest to this project make me to perform the attempt to continue it. Now, I'm trying another way. 1. Compile old sources (old weston) with new version of spice and wayland - done 2. Make it work if possible 3. Compile with new version of weston (perform merge) 4.

Re: Questions about experimental Spice compositor rebase

2016-02-28 Thread Fabio Fantoni
Il 27/02/2016 19:02, Fabio Fantoni ha scritto: Hi, long time ago I saw an interesting project for weston, the spice compositor: https://github.com/ein-shved/compositor-spice It is now abandoned because the developer has been involved in another project. As no other has continued it, despite m

[PATCH weston v1] refactor configuration API of headless-backend

2016-02-28 Thread Benoit Gschwind
My apologies, I forget to add the new .h file --- Makefile.am | 1 + src/compositor-headless.c | 42 +++--- src/compositor-headless.h | 54 +++ src/main.c| 65 ++-

[PATCH weston v0] refactor configuration API of headless-backend

2016-02-28 Thread Benoit Gschwind
Here is my proposal for headless backend. Best regards --- Makefile.am | 1 + src/compositor-headless.c | 42 +++--- src/main.c| 65 ++- 3 files changed, 74 insertions(+), 34 deletions(-) diff --g