Re: About decorations in Unity

2012-03-29 Thread Damián Nohales
Ok, I understand the point... probably a good idea is to have a library that help toolkits to paint decorations in a consistent way between desktops. El 27/03/12 22:44, Thiago Macieira escribió: > On terça-feira, 27 de março de 2012 22.32.13, Damián Nohales wrote: >> El 27/03/12 19:24, Thiago Maci

Re: [PATCH 1/4] doc: move documentation from the tex file to docbook

2012-03-29 Thread Peter Hutterer
On Thu, Mar 29, 2012 at 01:34:40PM +0200, Andreas Ericsson wrote: > On 03/29/2012 02:50 AM, Peter Hutterer wrote: > > > > - "Implementation" section skipped, this seems in need of an update anyway > >and may be better documented elsewhere (wiki?) > > > > Why not just use doxygen to document

[Web] [PATCH] Nvidia link, dupe macros build, dependency version info

2012-03-29 Thread Darxus
Improve the Nvidia firmware link again. Don't build macros a second time. Improve dependency version info. --- building.html | 28 +++- 1 files changed, 11 insertions(+), 17 deletions(-) diff --git a/building.html b/building.html index 6257b02..192ccfc 100644 --- a/buil

Re: [PATCH v2 1/4] shell: add fullscreen path for activate() and switcher

2012-03-29 Thread Kristian Høgsberg
On Thu, Mar 29, 2012 at 11:37 AM, Kristian Hoegsberg wrote: > On Tue, Mar 13, 2012 at 11:18:23PM +0800, zhiwen...@linux.intel.com wrote: >> From: Alex Wu >> >> For activate(), stack the surface atop fullscreen layer instead of >> toplevel layer. >> For switcher, involve the fullscreen surfaces in

Add wl_client_add_destroy_listener api in wayland-server.h

2012-03-29 Thread Samuel Rødal
This is useful when wanting to associate some meta-data with a wl_client, or when simply wanting to be notified when a client is destroyed. --- src/wayland-server.c | 30 ++ src/wayland-server.h |6 ++ 2 files changed, 36 insertions(+), 0 deletions(-) diff

Re: [PATCH v2 1/4] shell: add fullscreen path for activate() and switcher

2012-03-29 Thread Kristian Hoegsberg
On Tue, Mar 13, 2012 at 11:18:23PM +0800, zhiwen...@linux.intel.com wrote: > From: Alex Wu > > For activate(), stack the surface atop fullscreen layer instead of > toplevel layer. > For switcher, involve the fullscreen surfaces into surface iteration, > and make fullscreen surface and its black s

GTK+ 3.4.0 released, 3.4.1 patched for x11+wayland backends

2012-03-29 Thread darxus
GTK+ 3.4.0 was released three days ago with wayland support: https://mail.gnome.org/archives/gnome-announce-list/2012-March/msg00074.html It has a bug that causes it to break if you compile it with both the x11 and wayland backends: https://bugzilla.gnome.org/show_bug.cgi?id=672358 A patch to ma

XDC2012 - Announcement

2012-03-29 Thread Egbert Eich
Now that we have everything in place we can finally make it official and announce it: XDC2012 will take place from September 19th to September 21th in Nuernberg, Germany at the SUSE headquarter buidling. Matthias Hopf, Luc Verhaegen and I will be orgainzing this event. The initial wiki page for

Re: [PATCH 1/4] doc: move documentation from the tex file to docbook

2012-03-29 Thread Andreas Ericsson
On 03/29/2012 02:50 AM, Peter Hutterer wrote: > > - "Implementation" section skipped, this seems in need of an update anyway >and may be better documented elsewhere (wiki?) > Why not just use doxygen to document the api? It is *the* reference implementation, after all, and in-code comments r

Re: [PATCH 1/2] compositor: only update cursor sprite position on output repaint

2012-03-29 Thread Ander Conselvan de Oliveira
On 03/29/2012 10:56 AM, Ander Conselvan de Oliveira wrote: --- src/compositor.c | 29 +++-- src/compositor.h |2 ++ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/src/compositor.c b/src/compositor.c index f9e1f23..158acf8 100644 --- a/src/composi

[PATCH 2/2] compositor: only update drag surfaces during output repaint

2012-03-29 Thread Ander Conselvan de Oliveira
Drag surfaces were being updated in notify_* so that the relative distance between the drag surface and the cursor hotspot was kept. Instead, store the offset on the input device and update on drag_surface_configure(), that way we can update its position only once per frame. --- src/compositor.c |

[PATCH 1/2] compositor: only update cursor sprite position on output repaint

2012-03-29 Thread Ander Conselvan de Oliveira
--- src/compositor.c | 29 +++-- src/compositor.h |2 ++ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/src/compositor.c b/src/compositor.c index f9e1f23..158acf8 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -934,6 +934,7 @@ weston_output_r