Re: [PATCH 0/6] RDP compositor needs love v2

2016-05-27 Thread Sam Spilsbury
t; resize >> I checked my mails and it seems like these two have been reviewed with comments by Pekka. -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH wayland] wayland-shm: Include wayland-util.h

2016-05-20 Thread Sam Spilsbury
lists.freedesktop.org/mailman/listinfo/wayland-devel Technically makes sense to me, always better to have a flat include tree than one where the dependencies are hidden. Reviewed-by: Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH wayland] event-loop: Include wayland-util.h

2016-05-20 Thread Sam Spilsbury
gt; wayland-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/wayland-devel Technically makes sense to me, always better to have a flat include tree than one where the dependencies are hidden. Reviewed-by: Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH] rdp: don't release the seat until it is safe v2

2016-05-20 Thread Sam Spilsbury
t_pointer(peersItem->seat); Any reason to make this dynamically allocated memory? It seems to me like it is adding an additional point of failure for little added benefit. If it needs to be dynamically allocated, I think such a change should come in a separate patch, since it seems unrelated to this one. Reviewed-by: Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Unit testing a wayland client

2016-04-01 Thread Sam Spilsbury
to maintain it. But I'm glad others are looking into getting it back into shape). > > You could also look for inspiration in the Wayland test suite, even > though it is quite ad hoc. > > > Thanks, > pq > > ___ > wayl

Re: Vertex clipping and primitive types

2013-09-19 Thread Sam Spilsbury
On 20/09/2013 5:09 AM, "Bill Spitzak" wrote: > > > > Sam Spilsbury wrote: >> >> >> The point is to any arbitrary geometry against a rectangle. This is used to ensure that redraw areas only stick to damage areas. >> > I suspect the most efficient t

Re: Vertex clipping and primitive types

2013-09-18 Thread Sam Spilsbury
Hi Bill, On Sep 19, 2013 11:49 AM, "Bill Spitzak" wrote: > > > > Sam Spilsbury wrote: >> >> Hey all, >> >> I've started playing around with trying to get weston surfaces (or >> views as they will later be called) to use arbitrary vertex

Vertex clipping and primitive types

2013-09-18 Thread Sam Spilsbury
ys be correct. Thoughts? Sam. [1] For those who are curious about the various primitive types, have a look at http://www.opengl.org/wiki/Primitive -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: [PATCH 4/4] Added tests for the vertex clipping code.

2013-09-17 Thread Sam Spilsbury
start that for a few weeks though. Sam. On 17/09/2013 12:41 PM, "Kristian Høgsberg" wrote: > On Fri, Sep 13, 2013 at 10:01:22AM +0800, Sam Spilsbury wrote: > > This tests (via the table-driven testing method) that the correct > > number of vertices and also the correct ve

Re: [PATCH 3/4] Split vertex clipping code out into vertex-clipping.c

2013-09-13 Thread Sam Spilsbury
Hi Kristian, On Sat, Sep 14, 2013 at 6:35 AM, Kristian Høgsberg wrote: > On Fri, Sep 13, 2013 at 10:01:21AM +0800, Sam Spilsbury wrote: >> --- >> src/Makefile.am | 4 +- >> src/gl-renderer.c | 292 +- >>

[PATCH 4/4] Added tests for the vertex clipping code.

2013-09-12 Thread Sam Spilsbury
ertex-clip-test.c @@ -0,0 +1,219 @@ +/* + * Copyright © 2013 Sam Spilsbury + * + * Permission to use, copy, modify, distribute, and sell this software and + * its documentation for any purpose is hereby granted without fee, provided + * that the above copyright notice appear in all copies and that

[PATCH 3/4] Split vertex clipping code out into vertex-clipping.c

2013-09-12 Thread Sam Spilsbury
--- src/Makefile.am | 4 +- src/gl-renderer.c | 292 +- src/vertex-clipping.c | 317 ++ src/vertex-clipping.h | 65 +++ 4 files changed, 389 insertions(+), 289 deletions(-) create mode

[PATCH 2/4] Add support for table-driven testing.

2013-09-12 Thread Sam Spilsbury
pass++; - fprintf(stderr, ", pass.\n"); - } else - fprintf(stderr, ", fail.\n"); } - total = &__stop_test_section - &__start_test_section; fprintf(stderr, "%d tests, %d pass, %d f

[PATCH 1/4] Remove AM_LDFLAGS usage

2013-09-12 Thread Sam Spilsbury
We are not building everything here as a module, only the test modules. --- tests/Makefile.am | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 398a275..3a36619 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -7,6 +7,8

[PATCH 0/4] Table driven tests for the vertex clipping code

2013-09-12 Thread Sam Spilsbury
de split into libraries for testing purposes later. Also renamed libshared_test to libshared-test Sam Spilsbury (4): Remove AM_LDFLAGS usage Add support for table-driven testing. Split vertex clipping code out into vertex-clipping.c Added tests for the vertex clipping code. src/Mak

[PATCH 4/4] Added tests for the vertex clipping code.

2013-09-12 Thread Sam Spilsbury
URCES = keyboard-test.c $(weston_test_client_src) keyboard_weston_LDADD = $(weston_test_client_libs) diff --git a/tests/vertex-clip-test.c b/tests/vertex-clip-test.c new file mode 100644 index 000..51188b2 --- /dev/null +++ b/tests/vertex-clip-test.c @@ -0,0 +1,219 @@ +/* + * Copyright © 201

[PATCH 3/4] Split vertex clipping code out into vertex-clipping.c in shared/

2013-09-12 Thread Sam Spilsbury
--- shared/Makefile.am | 4 +- shared/vertex-clipping.c | 317 +++ shared/vertex-clipping.h | 65 ++ src/gl-renderer.c| 292 +-- 4 files changed, 389 insertions(+), 289 deletions(-) create

[PATCH 2/4] Add support for table-driven testing.

2013-09-12 Thread Sam Spilsbury
pass++; - fprintf(stderr, ", pass.\n"); - } else - fprintf(stderr, ", fail.\n"); } - total = &__stop_test_section - &__start_test_section; fprintf(stderr, "%d tests, %d pass, %d f

[PATCH 1/4] Remove AM_LDFLAGS usage

2013-09-12 Thread Sam Spilsbury
We are not building everything here as a module, only the test modules. --- tests/Makefile.am | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 398a275..3a36619 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -7,6 +7,8

[PATCH 0/4] Table driven tests for the vertex clipping code

2013-09-12 Thread Sam Spilsbury
This is the third series of patches for adding table driven tests for the vertex clipping code. >From the last series I fixed some a stray use of .a when it should have been .la and also rebased on some recent work that happened in git master. Sam Spilsbury (4): Remove AM_LDFLAGS usage

[PATCH 4/4] Added tests for the vertex clipping code.

2013-09-11 Thread Sam Spilsbury
t_src) keyboard_weston_LDADD = $(weston_test_client_libs) diff --git a/tests/vertex-clip-test.c b/tests/vertex-clip-test.c new file mode 100644 index 000..51188b2 --- /dev/null +++ b/tests/vertex-clip-test.c @@ -0,0 +1,219 @@ +/* + * Copyright © 2013 Sam Spilsbury + * + * Permission to use, copy, modify, distr

[PATCH 3/4] Split vertex clipping code out into vertex-clipping.c in shared/

2013-09-11 Thread Sam Spilsbury
--- shared/Makefile.am | 4 +- shared/vertex-clipping.c | 317 +++ shared/vertex-clipping.h | 65 ++ src/gl-renderer.c| 292 +-- 4 files changed, 389 insertions(+), 289 deletions(-) create

[PATCH 2/4] Add support for table-driven testing.

2013-09-11 Thread Sam Spilsbury
fprintf(stderr, ", fail.\n"); } - total = &__stop_test_section - &__start_test_section; fprintf(stderr, "%d tests, %d pass, %d fail\n", total, pass, total - pass); diff --git a/tests/weston-test-runner.h b/tests/westo

[PATCH 1/4] Remove AM_LDFLAGS usage

2013-09-11 Thread Sam Spilsbury
We are not building everything here as a module, only the test modules. --- tests/Makefile.am | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 82bf630..6234aa2 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -49,7 +49,7 @

[PATCH 0/4] Table driven tests for the vertex clipping code

2013-09-11 Thread Sam Spilsbury
convenience library. Sam Spilsbury (4): Remove AM_LDFLAGS usage Add support for table-driven testing. Split vertex clipping code out into vertex-clipping.c in shared/ Added tests for the vertex clipping code. shared/Makefile.am | 4 +- shared/vertex-clippin

Re: [PATCH weston 1/5] tests: always build tests

2013-09-11 Thread Sam Spilsbury
On Wed, Sep 11, 2013 at 8:38 PM, wrote: > On 11/09/2013 11:12, Sam Spilsbury wrote: >> >> Quick thought: there's also an important psychological effect to >> building the tests on a standard make because it promotes them to the >> same importance as the rest of y

Re: [PATCH weston 1/5] tests: always build tests

2013-09-11 Thread Sam Spilsbury
> +$(weston_test)\ >>> +$(module_tests) >>> >>> noinst_PROGRAMS =\ >>> $(setbacklight)\ >>> -matrix-test >>> - >>> -check_LTLIBRARIES =\ >>> -$(module_tests) >>> - >>> -check_PROGRAMS =

[PATCH 1/3] Add support for table-driven testing.

2013-09-10 Thread Sam Spilsbury
fprintf(stderr, ", fail.\n"); } - total = &__stop_test_section - &__start_test_section; fprintf(stderr, "%d tests, %d pass, %d fail\n", total, pass, total - pass); diff --git a/tests/weston-test-runner.h b/tests/westo

[PATCH 2/3] Split vertex clipping code out into vertex-clipping.c in shared/

2013-09-10 Thread Sam Spilsbury
--- shared/Makefile.am | 4 +- shared/vertex-clipping.c | 317 +++ shared/vertex-clipping.h | 65 ++ src/gl-renderer.c| 292 +-- 4 files changed, 389 insertions(+), 289 deletions(-) create

[PATCH 3/3] Added tests for the vertex clipping code.

2013-09-10 Thread Sam Spilsbury
LDADD = $(weston_test_client_libs) diff --git a/tests/vertex-clip-test.c b/tests/vertex-clip-test.c new file mode 100644 index 000..51188b2 --- /dev/null +++ b/tests/vertex-clip-test.c @@ -0,0 +1,219 @@ +/* + * Copyright © 2013 Sam Spilsbury + * + * Permission to use, copy, modify, distribute, and sell

[PATCH 1/3] Add support for table-driven testing.

2013-09-10 Thread Sam Spilsbury
pass += number_passed_in_test; } - total = &__stop_test_section - &__start_test_section; fprintf(stderr, "%d tests, %d pass, %d fail\n", total, pass, total - pass); diff --git a/tests/weston-test-runner.h b/tests/weston-test-runne

[PATCH 0/3] Tests for vertex clipping (v2)

2013-09-10 Thread Sam Spilsbury
libshared_test.a so that we don't need to recompile it all the time Sam Spilsbury (3): Add support for table-driven testing. Split vertex clipping code out into vertex-clipping.c in shared/ Added tests for the vertex clipping code. shared/Makefile.am | 4 +- shared/v

Re: [PATCH 3/3] Added tests for the vertex clipping code.

2013-09-10 Thread Sam Spilsbury
Hi, On Wed, Sep 11, 2013 at 1:33 AM, Eoff, Ullysses A wrote: >> -Original Message- >> From: wayland-devel-bounces+ullysses.a.eoff=intel@lists.freedesktop.org >> [mailto:wayland-devel- >> bounces+ullysses.a.eoff=intel@lists.freedesktop.org] On Behalf Of S

Re: [PATCH 1/3] Add support for table-driven testing.

2013-09-10 Thread Sam Spilsbury
Hi, On Wed, Sep 11, 2013 at 1:37 AM, Eoff, Ullysses A wrote: > > > -Original Message- > > From: wayland-devel-bounces+ullysses.a.eoff=intel@lists.freedesktop.org > > [mailto:wayland-devel- > > bounces+ullysses.a.eoff=intel@lists.freedesktop.org] On B

[PATCH 3/3] Added tests for the vertex clipping code.

2013-09-10 Thread Sam Spilsbury
Sam Spilsbury + * + * Permission to use, copy, modify, distribute, and sell this software and + * its documentation for any purpose is hereby granted without fee, provided + * that the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice

[PATCH 2/3] Split vertex clipping code out into vertex-clipping.c in shared/

2013-09-10 Thread Sam Spilsbury
--- shared/vertex-clipping.c | 317 +++ shared/vertex-clipping.h | 65 ++ src/Makefile.am | 2 + src/gl-renderer.c| 292 +-- 4 files changed, 388 insertions(+), 288 deletions(-) create

[PATCH 1/3] Add support for table-driven testing.

2013-09-10 Thread Sam Spilsbury
pass += number_passed_in_test; } - total = &__stop_test_section - &__start_test_section; fprintf(stderr, "%d tests, %d pass, %d fail\n", total, pass, total - pass); diff --git a/tests/weston-test-runner.h b/tests/weston-test-runne

[PATCH 0/3] Tests for vertex clipping

2013-09-10 Thread Sam Spilsbury
This patch series adds some tests for the vertex clipping code. It splits the main parts of calculate_edges out into clip_transformed exported in shared/vertex-clipping.c and adds support for table-driven testing in tests/weston-test-runner.h . Sam Spilsbury (3): Add support for table-driven

Re: Clarifying scope and goals for weston

2013-05-01 Thread Sam Spilsbury
On Wed, May 1, 2013 at 2:01 PM, Kristian Høgsberg wrote: > On Fri, Apr 19, 2013 at 11:03:16PM -0700, Kenneth Graunke wrote: >> On 04/18/2013 12:04 AM, Sam Spilsbury wrote: >> >On Wed, Apr 17, 2013 at 1:34 PM, Kristian Høgsberg >> >wrote: [snip] > Toolkit type scen

Re: [RFC] [tests] Running the wayland tests against compositor-headless

2013-04-22 Thread Sam Spilsbury
On Mon, Apr 22, 2013 at 11:02 PM, Eoff, Ullysses A wrote: >> -Original Message- >> From: Sam Spilsbury [mailto:smspil...@gmail.com] >>> >>> >>> > > Yes, it would be trivial to enable the input-based tests to run on the > headless ba

Re: [RFC] [tests] Running the wayland tests against compositor-headless

2013-04-22 Thread Sam Spilsbury
ck". >>> My custom script also allows me to parse the test output/results into a >>> standard, >>> normalized >>> Xml format that is recognized by our continuous integration server. >>> >>> U. Artie Eoff >>> >>> > -Or

Re: [RFC] [tests] Running the wayland tests against compositor-headless

2013-04-22 Thread Sam Spilsbury
f, >> Ullysses A >> Sent: Monday, April 22, 2013 1:24 PM >> To: Sam Spilsbury; wayland >> Subject: RE: [RFC] [tests] Running the wayland tests against >> compositor-headless >> >> Changing the tests to run headless is probably not necessary... >> > >

[RFC] [tests] Running the wayland tests against compositor-headless

2013-04-22 Thread Sam Spilsbury
y question to the list is - does it make sense to submit a patch to change the tests over to use the headless backend? Or is the preference to keep them using the wayland or x11 backend for now. Best, Sam. -- Sam Spilsbury ___ wayland-devel mailing

Re: Clarifying scope and goals for weston

2013-04-18 Thread Sam Spilsbury
ontext. I would suggest at least that weston-as-a-library is not responsible for making any OpenGL calls, but rather provides a set of utility functions so that implementing compositors can do those calls themselves. The other alternative is to ask tha

Re: Compiz is Dead - Beryl Lives Again? Enter - Northfield/Norwood

2013-03-25 Thread Sam Spilsbury
was done by an aspiring college student, Sam Spilsbury. > Eventually, Canonical realized that they wanted to do Unity but didn't > really have the manpower required to do something entirely original. > instead, the ployed to use compiz as a base platform for their Unity > impleme

Re: Expected behaviour of eglSwapBuffers and the event queue

2013-02-28 Thread Sam Spilsbury
poll () would truly sleep >> until there was. > > > Ugh, that sounds nasty and trouble-prone. Yeah, could be ugly. I'm wondering if that's how Xlib/xcb does it though - eg, you might make a request that requires a roundtrip, which would necessitate r

Expected behaviour of eglSwapBuffers and the event queue

2013-02-28 Thread Sam Spilsbury
he next call to poll () would truly sleep until there was. Best Regards, Sam -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Unresponsive applications

2011-09-22 Thread Sam Spilsbury
g list >> wayland-devel@lists.freedesktop.org >> http://lists.freedesktop.org/mailman/listinfo/wayland-devel > > ___ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Client permissions

2011-09-22 Thread Sam Spilsbury
e of > not using it. > > -- > Niklas > ___ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list w

Re: Window stacking

2011-09-17 Thread Sam Spilsbury
On Wed, Sep 14, 2011 at 11:35 PM, Giovanni Campagna wrote: > Il giorno mer, 14/09/2011 alle 21.56 +0800, Sam Spilsbury ha scritto: >> On Wed, Sep 14, 2011 at 12:13 PM, Bill Spitzak wrote: >> > Along with all the discussion about client-side decorations, there is also >>

Re: seprate window management component

2011-09-15 Thread Sam Spilsbury
ement policy first, rather than having the situation where we do now where the window manager must process requests after the fact in some cases) Regards, > > Thanks > > Michal > ___ > wayland-devel mailing list > wayland-devel@

Re: Window stacking

2011-09-14 Thread Sam Spilsbury
_ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists

Re: Window stacking

2011-09-14 Thread Sam Spilsbury
gt; that do not have images and never really map. These are displayed by task > manager type applications. Requests to window-manage these should cause > clients to also make related changes to visible windows. This is needed for > multiple-window apis. > ___ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Wayland Window Management Proposal

2011-05-17 Thread Sam Spilsbury
__ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: client side decorations

2011-05-06 Thread Sam Spilsbury
oolkits. You cannot assume that there will be a universally adopted method to styling because we see on every single platform that there will *not* be one. The best way to enforce styling is to enforce it at the window manager level, so that the applications on the system actually obey what the user

Re:

2011-05-05 Thread Sam Spilsbury
olved! > > Regards, > Malte E. > > > ___ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Wayland hot-replace server?

2011-03-06 Thread Sam Spilsbury
org/mailman/listinfo/wayland-devel >> >> An interesting point.  A parallel to --replace, and >> probably something that users would want to do while they are experimenting >> with different looks. >> ___ >> wayla

Re: What's wrong with wayland?

2011-02-20 Thread Sam Spilsbury
519931  email: weig...@metux.de >  mobile: +49 151 27565287  icq:   210169427         skype: nekrad666 > -- >  Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme > ------ > __

Re: What's wrong with wayland?

2011-02-19 Thread Sam Spilsbury
__ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: My Ideas on Compositors

2011-01-31 Thread Sam Spilsbury
easy. > _______ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: Checklist: Programmer viewpoint

2011-01-27 Thread Sam Spilsbury
to me (rather than maintaining 2 property systems) Cheers, Sam > ___ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___

Re: Some of my thoughts on input for wayland

2011-01-25 Thread Sam Spilsbury
> wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.fre

Re: Some of my thoughts on input for wayland

2011-01-24 Thread Sam Spilsbury
ith input on a case-by-case basis. > > Cheers, > Daniel > > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.4.10 (GNU/Linux) > > iEYEARECAAYFAk09/M0ACgkQUVYB1rKAgJTAOACcCcQ9RpameZFNUPwoBmH7vPYw > ls0An0GOrdlXmaCucPsNqr94Uf/oVTDU > =lQqh >

Re: Client side input processing

2010-12-10 Thread Sam Spilsbury
On Fri, Dec 10, 2010 at 11:53 PM, Marty Jack wrote: > > > On 12/10/2010 10:38 AM, Sam Spilsbury wrote: >> On Fri, Dec 10, 2010 at 10:21 PM, Marty Jack wrote: >>> There have been hints that client side input processing should be the norm >>> in Wayland.  This ma

Re: Client side input processing

2010-12-10 Thread Sam Spilsbury
vents first then this means that it cannot enforce certain window management policies. Regards, Sam > ___ > wayland-devel mailing list > wayland-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/wayland-devel > -- Sam Spilsbury ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel