Trying out a few gtk applications in ubuntu precise (video)

2012-04-06 Thread darxus
http://www.chaosreigns.com/wayland/demos/2012-04-07-wayland-several-gtk-apps.html I started going through the application menu testing things out. The biggest difference from the ubuntu packages is my gtk is rebuilt with --enable-wayland-backend. Somebody should create a ppa with that and the cli

[Web] [PATCH] Fix remaining html errors.

2012-04-06 Thread Darxus
Before committing, I always run html pages through http://htmlhelp.com/tools/validator/upload.html.en That tool also has the ability to recursively check an entire site, which I just did: http://htmlhelp.com/tools/validator/ --- clutter.html |6 +++--- qt5.html | 27 +---

Re: [Web] [PATCH 1/2] Xlib calls don't need to be removed, just wrapped in backend checks.

2012-04-06 Thread Kristian Høgsberg
Thanks, both applied. Kristian On Thu, Apr 5, 2012 at 1:20 PM, Darxus wrote: > --- >  gtk.html |    6 -- >  1 files changed, 4 insertions(+), 2 deletions(-) > > diff --git a/gtk.html b/gtk.html > index c3336f7..3ec9895 100644 > --- a/gtk.html > +++ b/gtk.html > @@ -87,8 +87,10 @@ application

Re: [Web] [PATCH 2/2] Fix a couple html errors.

2012-04-06 Thread Rob Bradford
LGTM to both of these. Thanks. Cheers, Rob On 5 April 2012 18:21, Darxus wrote: > --- >  gtk.html |    4 ++-- >  1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gtk.html b/gtk.html > index 3ec9895..4f7a7bd 100644 > --- a/gtk.html > +++ b/gtk.html > @@ -60,7 +60,7 @@ $ make &&

Re: [PATCH] screenshooter: Properly handle multiple outputs.

2012-04-06 Thread Rob Bradford
Hi, > -       for (i = 0; i < buffer->height; i++) { > -               memcpy(d, s, stride); > -               d += stride; > -               s -= stride; > +       for (i = 0; i < output->current->height; i++) { > +               memcpy(d + output->x * 4, s, output_stride); > +               d +=