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

2016-05-08 Thread Peter Hutterer
On Sat, Apr 30, 2016 at 05:58:32PM +0800, Jonas Ådahl wrote: > On Wed, Feb 03, 2016 at 03:28:09PM +1000, Peter Hutterer wrote: > > 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

Re: Help with initializations.

2016-05-08 Thread Peter Hutterer
On Sat, May 07, 2016 at 11:35:53AM -0400, Jeff Zhao wrote: > Hi, my name is Jeff. > I am not sure if I am suppose to post here, but the main page said > discussions can be posted here. > I am currently 17 and am working on a little project. My program would like > to interact with libinput and conf

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

2016-05-08 Thread Peter Hutterer
On Sat, Apr 30, 2016 at 05:57:21PM +0800, Jonas Ådahl wrote: > On Wed, Feb 03, 2016 at 03:28:05PM +1000, Peter Hutterer wrote: > > 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.

[PATCH wayland 0/1] doc: Formalize file comment in wayland-client.h, wayland-server.h

2016-05-08 Thread Yong Bakos
From: Yong Bakos When the -core.h decoupling was introduced, the doc comment at the top of wayland-server.h ended up being parsed by doxygen as the documentation for the deprecated type definition of wl_object. This caused publican to raise an error during doc generation, and also resulted in wl

[PATCH wayland 1/1] doc: Formalize file comment in wayland-client.h, wayland-server.h

2016-05-08 Thread Yong Bakos
From: Yong Bakos Publican was generating a subtle error during a build: Error: no ID for constraint linkend: Server-wayland-server-core_8h. This was caused by doxygen applying the doc comment at the top of wayland-server.h as the documentation for struct wl_object. As such, the generated documen

[PATCH wayland 0/1] connection: Move wl_interface_equal to util

2016-05-08 Thread Yong Bakos
From: Yong Bakos First, please forgive me if I'm making naive changes. I do look at the history of things before submitting such patches (I'm no maverick), and I appreciate the time it takes to tell me "no". During my documentation journey I found wl_interface_equal buried in the middle of map,

[PATCH wayland 1/1] connection: Move wl_interface_equal to util

2016-05-08 Thread Yong Bakos
From: Yong Bakos Move the wl_interface_equal prototype to the top of wayland-private, where it is not buried in the middle of map, connection and closure functions. Move the implementation out of connection and into util. This is a utility function, not specific to connections, and has call site

[PATCH wayland] protocol: Remove double line break

2016-05-08 Thread Yong Bakos
From: Yong Bakos All vertical whitespace should manifest as a single blank line, never two. Signed-off-by: Yong Bakos --- protocol/wayland.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/protocol/wayland.xml b/protocol/wayland.xml index 92e3f43..700ef03 100644 --- a/protocol/wayland.xml

Help with initializations.

2016-05-08 Thread Jeff Zhao
Hi, my name is Jeff. I am not sure if I am suppose to post here, but the main page said discussions can be posted here. I am currently 17 and am working on a little project. My program would like to interact with libinput and configure device options. However, my programming skills are still very

[PATCH wayland] private: Remove unnecessary forward declarations

2016-05-08 Thread Yong Bakos
From: Yong Bakos Declarations for wl_connection and wl_closure are not needed here. wl_closure already has a complete definition. Removing these forward declarations results in a clean, warning-free compile. Signed-off-by: Yong Bakos --- src/wayland-private.h | 4 1 file changed, 4 deleti