Re: [PATCH weston-ivi-shell 04/15] ivi-shell supports a type of shell for In-Vehicle Infotainment system.

2014-03-11 Thread Nobuhiko Tanibata
2014-03-12 04:10 に Bill Spitzak さんは書きました: Pekka Paalanen wrote: +wl_list_for_each(seat, &ec->seat_list, link) { +if (seat) { +shell->seat = seat; 'seat' cannot be NULL here. It seems you are assuming that there can be only one seat? Why? Ideally, I agree. However I am

Re: [PATCH weston v4 00/15] Add a fullscreen shell protocol

2014-03-11 Thread Jason Ekstrand
On Mar 11, 2014 11:36 AM, "Andrew Wedgbury" wrote: > > Hi Jason, > > > On Wed, 26 Feb 2014, Jason Ekstrand wrote: > >> 4) Screen sharing and recording. The security discussion on how to allow >>clients to request screen sharing and things of the like is still going >>on and I have no inte

Re: [PATCH] Link only against rt, as fixed-benchmark isn't runnable by test suite

2014-03-11 Thread Pekka Paalanen
On Tue, 11 Mar 2014 18:16:52 + "Bryce W. Harrington" wrote: > Thanks to feedback from Pekka Paalanen. Using -lrt instead of > libtest-runner.la still results in successful compilation and no change > in test behavior, and fixed-benchmark still appears to run properly. > > Signed-off-by: Bry

Re: [PATCH weston-ivi-shell 04/15] ivi-shell supports a type of shell for In-Vehicle Infotainment system.

2014-03-11 Thread Bill Spitzak
Pekka Paalanen wrote: +wl_list_for_each(seat, &ec->seat_list, link) { +if (seat) { +shell->seat = seat; 'seat' cannot be NULL here. It seems you are assuming that there can be only one seat? Why? Ideally, I agree. However I am in automotive software, and I have habit t

[PATCH] gitignore log files, now in root directory

2014-03-11 Thread Bryce W. Harrington
Signed-off-by: Bryce Harrington --- .gitignore |2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index e0a73c0..d3044a2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.jpg *.la *.lo +*.log *.o *.pc *.so @@ -21,6 +22,7 @@ cscope.out /config.status

[PATCH] Link only against rt, as fixed-benchmark isn't runnable by test suite

2014-03-11 Thread Bryce W. Harrington
Thanks to feedback from Pekka Paalanen. Using -lrt instead of libtest-runner.la still results in successful compilation and no change in test behavior, and fixed-benchmark still appears to run properly. Signed-off-by: Bryce Harrington --- Makefile.am |2 +- 1 file changed, 1 insertion(+), 1

Re: [PATCH] tests: Fix build of noinst fixed-benchmark test

2014-03-11 Thread Kristian Høgsberg
On Tue, Mar 11, 2014 at 12:01:47AM +, Bryce W. Harrington wrote: > Solves this build error: > > tests/fixed-benchmark.o: In function `benchmark': > ./wayland/tests/fixed-benchmark.c:82: undefined reference to `clock_gettime' > ./wayland/tests/fixed-benchmark.c:84: undefined reference to

Re: [PATCH weston v4 00/15] Add a fullscreen shell protocol

2014-03-11 Thread Andrew Wedgbury
Hi Jason, On Wed, 26 Feb 2014, Jason Ekstrand wrote: 4) Screen sharing and recording. The security discussion on how to allow clients to request screen sharing and things of the like is still going on and I have no intention of solving that question here. Most proposals for screen sh

Re: [PATCH weston-ivi-shell 04/15] ivi-shell supports a type of shell for In-Vehicle Infotainment system.

2014-03-11 Thread Nobuhiko Tanibata
2014-03-11 17:14 に Pekka Paalanen さんは書きました: On Tue, 11 Mar 2014 14:51:21 +0900 Nobuhiko Tanibata wrote: 2014-03-10 19:47 に Pekka Paalanen さんは書きました: > On Thu, 6 Mar 2014 18:56:58 +0900 > Nobuhiko Tanibata wrote: > >> In-Vehicle Infotainment system traditionally manages surfaces with >> global

Re: [PATCH wayland v3] protocol: try to clarify frame callback semantics

2014-03-11 Thread Kristian Høgsberg
On Tue, Mar 11, 2014 at 03:53:06PM +0200, Pekka Paalanen wrote: > Ping? Pong, thanks. As we discussed, I agree with the changes here. Patch committed. Kristian > On Mon, 24 Feb 2014 10:00:33 +0200 > Pekka Paalanen wrote: > > > From: Pekka Paalanen > > > > "the callback event will arrive aft

Re: [PATCH weston v4 15/15] Add a screen sharing plugin

2014-03-11 Thread Jason Ekstrand
On Mar 10, 2014 9:29 PM, "Bryce W. Harrington" wrote: > > On Mon, Mar 10, 2014 at 08:42:41PM -0500, Jason Ekstrand wrote: > > > > +static void > > > > +ss_seat_handle_pointer_enter(void *data, struct wl_pointer *pointer, > > > > + uint32_t serial, struct wl_surface *surfac

RE: Wayland window transparency

2014-03-11 Thread Neal.Kunkle
Ok, this makes sense now. I am indeed used to always getting an opaque window. Thank you for your responses! Neal Kunkle -Original Message- From: Pekka Paalanen [mailto:ppaala...@gmail.com] Sent: Tuesday, March 11, 2014 2:31 PM To: Kunkle Neal Cc: Giulio Camuffo; wayland mailing list

Re: Wayland window transparency

2014-03-11 Thread Pekka Paalanen
On Tue, 11 Mar 2014 14:50:51 +0200 Giulio Camuffo wrote: > Hi Neal, > > You don't need to use any Wayland or Weston specific thing. Wayland > compositor just use buffers you provide to them as you provide them, > so if you want the buffer to be opaque give Wayland an opaque buffer. > Either use

Re: Wayland window transparency

2014-03-11 Thread Giulio Camuffo
Hi Neal, You don't need to use any Wayland or Weston specific thing. Wayland compositor just use buffers you provide to them as you provide them, so if you want the buffer to be opaque give Wayland an opaque buffer. Either use one without an alpha channel or clear the whole buffer with an opaque c

Wayland window transparency

2014-03-11 Thread Neal.Kunkle
Hi, I am currently struggling with transparency on a system with Wayland 1.2 and using the Weston compositor. I have looked through the documentation and read through previous mails, but I did not find an answer to what I seek. Can you please let me know if this is possible/ how to interact w

[PATCH] desktop-shell: Bug fix client apps because of output change

2014-03-11 Thread Quanxian Wang
1) Width and height of Panel and Background depend on output's, therefore they should be bound with output changes including mode, transform and scale. 2) Update the min_allocation before resize the panel and background window. Add window_set_min_allocation function because it is invisible outside

Re: [PATCH] tests: Fix build of noinst fixed-benchmark test

2014-03-11 Thread Pekka Paalanen
On Tue, 11 Mar 2014 00:01:47 + "Bryce W. Harrington" wrote: > Solves this build error: > > tests/fixed-benchmark.o: In function `benchmark': > ./wayland/tests/fixed-benchmark.c:82: undefined reference to `clock_gettime' > ./wayland/tests/fixed-benchmark.c:84: undefined reference to `cl

RE: [PATCH] Bug fix client apps because of output change

2014-03-11 Thread Wang, Quanxian
>-Original Message- >From: wayland-devel-boun...@lists.freedesktop.org >[mailto:wayland-devel-boun...@lists.freedesktop.org] On Behalf Of Pekka >Paalanen >Sent: Tuesday, March 11, 2014 4:26 PM >To: Wang, Quanxian >Cc: wayland-devel@lists.freedesktop.org >Subject: Re: [PATCH] Bug fix clien

Re: [PATCH] Bug fix client apps because of output change

2014-03-11 Thread Pekka Paalanen
On Tue, 11 Mar 2014 01:40:18 + "Wang, Quanxian" wrote: > > > >-Original Message- > >From: Pekka Paalanen [mailto:ppaala...@gmail.com] > >Sent: Monday, March 10, 2014 7:05 PM > >To: Wang, Quanxian > >Cc: wayland-devel@lists.freedesktop.org > >Subject: Re: [PATCH] Bug fix client apps

Re: [PATCH] Bug fix client apps because of output change

2014-03-11 Thread Pekka Paalanen
On Tue, 11 Mar 2014 01:48:49 + "Wang, Quanxian" wrote: > Thanks. > > Quanxian > > >> >binds with version 2 regardless of what the compositor advertised. > >> > > >> >You can compare to the "desktop_shell" global handling which seems > >> >correct. > >> [Wang, Quanxian] I will check and upda

Re: [PATCH weston-ivi-shell 04/15] ivi-shell supports a type of shell for In-Vehicle Infotainment system.

2014-03-11 Thread Pekka Paalanen
On Tue, 11 Mar 2014 14:51:21 +0900 Nobuhiko Tanibata wrote: > 2014-03-10 19:47 に Pekka Paalanen さんは書きました: > > On Thu, 6 Mar 2014 18:56:58 +0900 > > Nobuhiko Tanibata wrote: > > > >> In-Vehicle Infotainment system traditionally manages surfaces with > >> global > >> identification. A protocol,