Re: Wayland web typo fix

2012-09-12 Thread Diego Viola
Krh, I've found more typos, fix here: https://github.com/diegoviola/wayland-web/commit/5a23ad65d9b4243197358f6e032234dc176c3b80 Thanks for your hard work. Diego Viola On Wed, Sep 12, 2012 at 12:51 PM, Kristian Høgsberg wrote: > On Wed, Sep 12, 2012 at 05:43:58AM -0400, Diego Viola wrote: >> Hi

[PATCH v3 3/3] compositor: Adds the ability to invert colors with Alt + I.

2012-09-12 Thread John Kåre Alsaker
--- src/compositor.h | 3 +++ src/gles2-renderer.c | 18 -- src/shell.c | 11 +++ 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/src/compositor.h b/src/compositor.h index c24545d..70080ce 100644 --- a/src/compositor.h +++ b/src/compositor.h @@

[PATCH v3 2/3] gles2-renderer: Adds the ability to draw damage to a texture and in turn to the framebuffer.

2012-09-12 Thread John Kåre Alsaker
--- src/compositor.h | 5 ++ src/gles2-renderer.c | 164 +-- 2 files changed, 152 insertions(+), 17 deletions(-) diff --git a/src/compositor.h b/src/compositor.h index 733f423..c24545d 100644 --- a/src/compositor.h +++ b/src/compositor.h @@ -1

[PATCH v3 1/3] gles2-renderer: Add callbacks to store EGL surfaces in outputs.

2012-09-12 Thread John Kåre Alsaker
--- src/compositor-android.c | 9 +++-- src/compositor-drm.c | 13 - src/compositor-wayland.c | 11 +++ src/compositor-x11.c | 10 ++ src/compositor.h | 4 src/gles2-renderer.c | 12 6 files changed, 44 insertions(+), 15 delet

[PATCH] text: Improve text protocol documentation

2012-09-12 Thread Jan Arne Petersen
From: Jan Arne Petersen Add some missing descriptions to the text protocol file. --- protocol/text.xml | 35 --- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/protocol/text.xml b/protocol/text.xml index eded1c8..857fd83 100644 --- a/protocol/text

Re: [PATCH v2 00/17] Improved text protocol, editor and keyboard examples

2012-09-12 Thread Kristian Høgsberg
On Sun, Sep 09, 2012 at 11:08:29PM +0200, Jan Arne Petersen wrote: > From: Jan Arne Petersen > > Fixed some small bugs in still open patches, and added them here since they > are > dependencies of the other changes. > > Improve the editor example adding cursor, selection and pre-edit support. >

Re: [PATCH] compositor: Don't use empty bounding boxes for output assigninment

2012-09-12 Thread Kristian Høgsberg
On Tue, Sep 11, 2012 at 05:37:29PM +0300, Ander Conselvan de Oliveira wrote: > From: Ander Conselvan de Oliveira > > When weston_surface_assign_output() is called for an unmap'd surface, > its bounding box is empty causing no output to be assigned. This later > causes calls to weston_surface_sche

Re: [PATCH] Wayland X server uses xwayand.conf instead of xorg.conf, and xwayland.conf.d instead of xorg.conf.d.

2012-09-12 Thread Bill Spitzak
Any comments on this patch? Is there another way to get the desired effect (x on wayland works without having to use sudo to temporarily alter the files needed to run normal X)? Or is this just not considered a problem because of the assumption that when Wayland is used there just won't be a

Re: Wayland web typo fix

2012-09-12 Thread Kristian Høgsberg
On Wed, Sep 12, 2012 at 05:43:58AM -0400, Diego Viola wrote: > Hi, > > I've just made this small fix for some typos in wayland-web git repo: > > https://github.com/diegoviola/wayland-web/commit/b47acadd45bdf59a4b9f65b8294f7bed224b01b7 > > Please merge it. :) Thanks, done. Kristian > Thanks, >

Re: [PATCH] compositor: Accumulate obscured damage into the primary plane damage

2012-09-12 Thread Kristian Høgsberg
On Wed, Sep 12, 2012 at 05:16:31PM +0300, Ander Conselvan de Oliveira wrote: > From: Ander Conselvan de Oliveira > > When accumulating damage in the surfaces into the primary plane damage, > regions obscured by the opaque region would be excluded. This causes a > bug when a redraw of a surface is

Re: [PATCH] event-loop: export wl_event_loop_dispatch_idle()

2012-09-12 Thread Kristian Høgsberg
On Tue, Sep 11, 2012 at 04:09:34PM +0200, David Herrmann wrote: > When integrating the wayland event-loop into another event-loop, we > currently have no chance of checking whether there are pending idle > sources that have to be called. This patch exports the > "dispatch_idle_sources()" call so ot

Re: [PATCH weston 2/3] clients: add cliptest program

2012-09-12 Thread Kristian Høgsberg
On Tue, Sep 11, 2012 at 05:02:04PM +0300, Pekka Paalanen wrote: > Cliptest is for controlled testing of the calculate_edges() function in > compositor.c. The function is copied verbatim into cliptest.c. > > Signed-off-by: Pekka Paalanen Nice, thanks. Kristian > --- > clients/.gitignore |

Re: [PATCH weston 1/3] update .gitignores

2012-09-12 Thread Kristian Høgsberg
On Tue, Sep 11, 2012 at 05:02:03PM +0300, Pekka Paalanen wrote: > Add workspaces-protocol.c, workspaces-server-protocol.h, > workspaces-client-protocol.h. > > Remove wscreensaver. > > Alphabetaize clients/.gitignore. Committed. Kristian > Signed-off-by: Pekka Paalanen > --- > clients/.gitign

[PATCH] compositor: Accumulate obscured damage into the primary plane damage

2012-09-12 Thread Ander Conselvan de Oliveira
From: Ander Conselvan de Oliveira When accumulating damage in the surfaces into the primary plane damage, regions obscured by the opaque region would be excluded. This causes a bug when a redraw of a surface is obscured by an opaque surface on another plane. The drawing to the former surface is c

Wayland web typo fix

2012-09-12 Thread Diego Viola
Hi, I've just made this small fix for some typos in wayland-web git repo: https://github.com/diegoviola/wayland-web/commit/b47acadd45bdf59a4b9f65b8294f7bed224b01b7 Please merge it. :) Thanks, Diego ___ wayland-devel mailing list wayland-devel@lists.f

Re: Repaint Issue

2012-09-12 Thread Abhijit Potnis
Hello Ander, Thanks for the pointers. I shall have a look as you suggested. On Wed, Sep 12, 2012 at 12:53 AM, Ander Conselvan de Oliveira < conselv...@gmail.com> wrote: > On 09/11/2012 05:48 PM, Abhijit Potnis wrote: > >> > Repaint is supposed to be as-needed only, not periodical, but >> cl

Re: Repaint Issue

2012-09-12 Thread Ander Conselvan de Oliveira
On 09/11/2012 05:48 PM, Abhijit Potnis wrote: > Repaint is supposed to be as-needed only, not periodical, but clearly > some trigger is missing. Maybe a new surface is not assigned an output > until redraw, and redraw does not happen until there is damage, and > damage is

Re: [PATCH] compositor: Don't use empty bounding boxes for output assigninment

2012-09-12 Thread Ander Conselvan de Oliveira
On 09/12/2012 09:15 AM, Pekka Paalanen wrote: On Tue, 11 Sep 2012 17:37:29 +0300 Ander Conselvan de Oliveira wrote: From: Ander Conselvan de Oliveira When weston_surface_assign_output() is called for an unmap'd surface, its bounding box is empty causing no output to be assigned. This later c