Re: [PATCH Weston 1/1] desktop-shell: implement autolaunch

2014-10-24 Thread Pekka Paalanen
On Fri, 24 Oct 2014 10:28:57 +0100 Daniel Stone wrote: > Hi, > > On 22 October 2014 14:53, Pekka Paalanen > wrote: > > > + pid = fork(); > > + if (pid < 0) { > > + fprintf(stderr, "fork failed: %m\n"); > > + goto out; > > + } > > + > > + if (

Re: [WESTON PATCH 1/1] Weston: Fix some weston.ini.man typesetting macros

2014-10-24 Thread Derek Foreman
An obvious improvement. Reviewed-by: Derek Foreman On 23/10/14 09:40 PM, Frederic Plourde wrote: > This patch fixes a couple of misuses around .TP 7 macros that wrongly > limited right margins and relative identation. > --- > man/weston.ini.man | 3 +-- > 1 file changed, 1 insertion(+), 2 delet

Re: [PATCH 3/3] compositor: Fix typos in help text

2014-10-24 Thread Derek Foreman
The whole series looks correct to me... Reviewed-by: Derek Foreman On 23/10/14 04:44 PM, Bryce Harrington wrote: > Signed-off-by: Bryce Harrington > --- > src/compositor.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/src/compositor.c b/src/compositor.c > index

Re: [PATCH 2/2] compositor: List only available backends in help text

2014-10-24 Thread Derek Foreman
I think this series is all obviously correct too. Though, I suppose this one will look funny if someone manages to build weston without any back-ends. :) Reviewed-by: Derek Foreman On 23/10/14 05:25 PM, Bryce Harrington wrote: > Signed-off-by: Bryce Harrington > --- > src/compositor.c | 22 +

[PATCH libinput] evdev: Pass along device overflow information

2014-10-24 Thread Derek Foreman
Currently libinput users just see choppy input if the kernel event queue overflows. This patch passes along an event so the caller can at least log it. --- src/evdev.c| 1 + src/libinput-private.h | 3 +++ src/libinput.c | 18 ++ src/libinput.h | 5 +

Re: Wayland, Weston and libinput to patchwork?

2014-10-24 Thread Peter Hutterer
On Sat, Oct 04, 2014 at 04:58:38PM +0200, Jonas Ådahl wrote: > On Wed, Oct 01, 2014 at 11:45:26AM +0300, Pekka Paalanen wrote: > > Hi, > > > > at least with Wayland and Weston, we have bit of hard time tracking the > > patches that need attention. I think I am currently the only one who > > actual

Re: [PATCH wayland] client: add wl_proxy_get_version function

2014-10-24 Thread Pekka Paalanen
On Mon, 06 Oct 2014 11:43:56 +0300 Rémi Denis-Courmont wrote: > Le 2014-10-06 11:26, Pekka Paalanen a écrit : > >> > 4 or higher as a wl_surface version 3? If not, I cannot rely on > >> > 'wl_proxy_get_version(surface) >= 2'... > >> > >> Changing the semantics[5] of wl_surface.damage is a good ex

Re: Dual display clone mode in Wayland

2014-10-24 Thread Pekka Paalanen
On Thu, 9 Oct 2014 07:28:12 + Sathishkumar Sivagurunathan wrote: > Hi, > >I am trying to bring up Weston on laptop. My aim is to see the display on > two screens (Laptop screen [1366x768] and HDMI display [1920x1080]).. > >Is there a way that I can mentioning in weston.ini file so

[PATCH weston] cairo-util: fix shadows for small clients

2014-10-24 Thread Marek Chalupa
If the client is small (< 128 pixels in any ward), then the shadows overlap and create dark lines behind clients. This is a problem mosly with pop-up menues. The lines become observable when the menu has less than three items. The other case is when the client doesn't restrict its size when resizin

[PATCH] doc: Added API documentation for wl_display_destroy and wl_display_add_socket functions.

2014-10-24 Thread Srivardhan Hebbar
Signed-off-by: Srivardhan Hebbar --- src/wayland-server.c | 20 1 file changed, 20 insertions(+) diff --git a/src/wayland-server.c b/src/wayland-server.c index 674aeca..0f61e6e 100644 --- a/src/wayland-server.c +++ b/src/wayland-server.c @@ -862,6 +862,15 @@ wl_socket_alloc(

Re: [PATCH weston v2 13/20] renderers: use weston_matrix_needs_filtering to choose filter parameters in gl and pixman renderers

2014-10-24 Thread Bill Spitzak
On 10/16/2014 08:55 AM, Derek Foreman wrote: we still do our own test here because the pixman check misses a few opportunities when the display is flipped. I have a patch posted to the pixman list to fix this, though I am not sure what is happening there or if they will use it. It also make

Re: [PATCH weston v6 2/2 1/2] window : compare version and call appropriate destructor

2014-10-24 Thread Kabeer Ahmed Khan
Title: Samsung Enterprise Portal mySingle Sorry for wrong Subject message resending the corrected one   --- Original Message --- Sender : Kabeer Ahmed Khan Senior Software Engineer/SRI-Bangalore-Recruitment/Samsung Electronics Date : Oct 20, 2014 11:49 (GMT+05:30) Title : [PATCH we

Re: Recognizing wl_display pointer for EGL (Re: Smart comparing of wl_display_interfaces)

2014-10-24 Thread Jason Ekstrand
On Thu, Oct 16, 2014 at 11:16 PM, Pekka Paalanen wrote: > On Thu, 16 Oct 2014 10:40:20 +0300 > Pekka Paalanen wrote: > > > On Thu, 16 Oct 2014 09:46:39 +0300 > > Pekka Paalanen wrote: > > > > > On Wed, 15 Oct 2014 22:44:25 +0400 > > > Dmitry Cherkassov wrote: > > > > > > > Hi list! > > > > > >

Re: Smart comparing of wl_display_interfaces

2014-10-24 Thread Pekka Paalanen
On Thu, 16 Oct 2014 09:46:39 +0300 Pekka Paalanen wrote: > On Wed, 15 Oct 2014 22:44:25 +0400 > Dmitry Cherkassov wrote: > > > Hi list! > > > > The definition of wl_display_interface symbol can come from > > libwayland-server.so or libwayland-client.so. > > > > There is a code in closed sourc

Re: [PATCH Weston 1/1] desktop-shell: implement autolaunch

2014-10-24 Thread Daniel Stone
Hi, On 22 October 2014 14:53, Pekka Paalanen wrote: > + pid = fork(); > + if (pid < 0) { > + fprintf(stderr, "fork failed: %m\n"); > + goto out; > + } > + > + if (pid) > + goto out; > + > + argvpp = argv.data; > + if (

[PATCH wayland] increase server listen queue to 8

2014-10-24 Thread Imran Zaman
Hi This will allow more than 1 simultaneous client connections to the server without the possibility of connection refused error. possible use case is multiple session compositors can connect to the system compositor simultaneously. diff --git a/src/wayland-server.c b/src/wayland-server.c i

Re: [PATCH Weston 1/1] desktop-shell: implement autolaunch

2014-10-24 Thread Bryce Harrington
On Fri, Oct 24, 2014 at 01:18:51PM +0300, Pekka Paalanen wrote: > > And, while you're at it - as this was written for kiosk mode, it spawns a > > shell script which just restarts the video player in a loop. Can we please > > add an autostart param to weston_client_run/start (as a new enum with > >

[PATCH wayland-web] testing: Be more diverse in word choice

2014-10-24 Thread Bryce Harrington
Signed-off-by: Bryce Harrington --- testing.html |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing.html b/testing.html index b199d82..660cee9 100644 --- a/testing.html +++ b/testing.html @@ -57,7 +57,7 @@ the tests directory. It leverages automake's specify, compil

[PATCH wayland-web] testing: Document how to run an individual test

2014-10-24 Thread Bryce Harrington
Had to figure this all out for something else, so figured I'd document it. Eventually we may have so many tests that running one in isolation will be handy. Signed-off-by: Bryce Harrington --- testing.html | 43 +++ 1 file changed, 43 insertions(+) dif