Wayland and GL_MAX_TEXTURE_SIZE

2012-07-08 Thread nerdopolis
Hi. So a discussion that was on the IRC earlier was about how GL_MAX_TEXTURE_SIZE can prevent larger surfaces or windows from appearing. This is a snip of the IRC. I decided that it might be a good idea to bring the discussion to the mailing list? [16:55:04] So when I specify a --width of 50

Re: Forsed disabled clienside window decoration

2012-07-08 Thread Juan Zhao
On Sun, 2012-07-08 at 18:15 +0400, Сергей Волков wrote: > 1) Hello, can you add method in the wayland protocol for forced > disabled clienside decorations. I think it's would be good idea to add > one method for all applications to forced hide client decorations! > This is help to make diffirent wi

Forsed disabled clienside window decoration

2012-07-08 Thread Сергей Волков
1) Hello, can you add method in the wayland protocol for forced disabled clienside decorations. I think it's would be good idea to add one method for all applications to forced hide client decorations! This is help to make diffirent windows managers like in X server (tailing, floating e.t.c) and

Re: [PATCH] clients: Free resources on exit in eventdemo

2012-07-08 Thread Martin Olsson
On 07/08/2012 03:09 PM, Pekka Paalanen wrote: Looks good to me now, I assume you tested this program exits properly. Btw. have you tried Valgrind on these? Yes I tried it; FWIW with the new call to display_destroy the eventdemo app now hits invalid read, invalid write and finally an assert. H

[PATCH] clients: Silence 2x gcc 4.6.3 "warn_unused_result" compiler warnings

2012-07-08 Thread Martin Olsson
window.c:1173:6: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result] desktop-shell.c:305:6: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result] --- clients/desktop-shell.c |3 ++- clients/wi

Re: [PATCH] clients: Free resources on exit in eventdemo

2012-07-08 Thread Pekka Paalanen
On Sun, 8 Jul 2012 11:11:18 +0200 Martin Olsson wrote: > --- > clients/eventdemo.c | 15 +++ > 1 file changed, 15 insertions(+) > > diff --git a/clients/eventdemo.c b/clients/eventdemo.c > index daf3283..22dade3 100644 > --- a/clients/eventdemo.c > +++ b/clients/eventdemo.c > @@

Wayland-Cint repo needs a new home

2012-07-08 Thread Casey Dahlin
Hey all, So anyone that has been using it may have noticed that the Wayland Continuous Integration Repo hasn't been updated in several weeks. While some of that is my schedule tightening, the major blockage has been that I can't seem to push to gitorious anymore. I'm still not certain if this is

[PATCH] clients: Free resources on exit in eventdemo

2012-07-08 Thread Martin Olsson
--- clients/eventdemo.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/clients/eventdemo.c b/clients/eventdemo.c index daf3283..22dade3 100644 --- a/clients/eventdemo.c +++ b/clients/eventdemo.c @@ -261,6 +261,7 @@ motion_handler(struct widget *widget, struct input *input,

[PATCH] clients: Add clients/weston-screensaver to clients/.gitignore

2012-07-08 Thread Martin Olsson
--- clients/.gitignore |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/.gitignore b/clients/.gitignore index fe50580..2506d3a 100644 --- a/clients/.gitignore +++ b/clients/.gitignore @@ -23,7 +23,7 @@ weston-desktop-shell weston-tablet-shell weston-screenshooter w

Re: [PATCH 10/10] clients: Silence 2x gcc 4.6.3 "warn_unused_result" compiler warnings

2012-07-08 Thread Pekka Paalanen
On Sun, 8 Jul 2012 03:03:47 +0200 Martin Olsson wrote: > window.c:1173:6: warning: ignoring return value of ‘read’, declared with > attribute warn_unused_result [-Wunused-result] > desktop-shell.c:305:6: warning: ignoring return value of ‘read’, declared > with attribute warn_unused_result [-W

Re: [PATCH 05/10] compositor-android: Add proper error handling in android_compositor_create()

2012-07-08 Thread Pekka Paalanen
On Sun, 8 Jul 2012 03:03:42 +0200 Martin Olsson wrote: > --- > src/compositor-android.c | 22 +++--- > 1 file changed, 15 insertions(+), 7 deletions(-) > > diff --git a/src/compositor-android.c b/src/compositor-android.c > index 54cfa2e..98956f6 100644 > --- a/src/compositor-

Re: [PATCH 04/10] shared: Don't leak file descriptor in shared/image-loader.c

2012-07-08 Thread Pekka Paalanen
On Sun, 8 Jul 2012 03:03:41 +0200 Martin Olsson wrote: > --- > shared/image-loader.c |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/shared/image-loader.c b/shared/image-loader.c > index a3218df..b47c1a7 100644 > --- a/shared/image-loader.c > +++ b/shared/image-l

Re: [PATCH 03/10] clients: Don't leak "menu" on error path in clients/window.c

2012-07-08 Thread Pekka Paalanen
On Sun, 8 Jul 2012 03:03:40 +0200 Martin Olsson wrote: > --- > clients/window.c |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/clients/window.c b/clients/window.c > index 8f3c942..f81d06f 100644 > --- a/clients/window.c > +++ b/clients/window.c > @@ -3133,8 +313

Re: [PATCH 01/10] clients: Add clients/weston-screensaver to clients/.gitignore

2012-07-08 Thread Pekka Paalanen
On Sun, 8 Jul 2012 03:03:38 +0200 Martin Olsson wrote: > --- > clients/.gitignore |1 + > 1 file changed, 1 insertion(+) > > diff --git a/clients/.gitignore b/clients/.gitignore > index fe50580..b43992b 100644 > --- a/clients/.gitignore > +++ b/clients/.gitignore > @@ -23,6 +23,7 @@ weston

Re: [PATCH 02/10] clients: Free resources on exit in eventdemo

2012-07-08 Thread Pekka Paalanen
Hi, On Sun, 8 Jul 2012 03:03:39 +0200 Martin Olsson wrote: > --- > clients/eventdemo.c | 13 + > 1 file changed, 13 insertions(+) > > diff --git a/clients/eventdemo.c b/clients/eventdemo.c > index daf3283..bc066be 100644 > --- a/clients/eventdemo.c > +++ b/clients/eventdemo.c >

Re: Missing libpthread dependence in Weston config files?

2012-07-08 Thread Üstün Ergenoglu
That's a problem with libvpx. It doesn't build the shared libraries by default so you have to use the --enable-shared flag while configuring it. -Ustun On 8 July 2012 06:57, Mikalai Kisialiou wrote: > Not sure if this list is the proper media for communicating potential > issues/bugs. I've just