Re: [RFC] compositor: Introduce composite zoom. v1

2012-02-13 Thread Pekka Paalanen
On Mon, 13 Feb 2012 15:26:16 -0700 Scott Moreau wrote: > Implements a modelview matrix for transforms to simulate camera movement. > Ideally, we would want to use +Scroll but that will have to > wait for axis events to come. For now we double check for the binding > in notify_key as a quick-n-dir

[wayland PATCH] silence the warning

2012-02-13 Thread juan . j . zhao
From: Juan Zhao scanner.c:142:42: warning connection.c:529:9: warning connection.c:559:10: warning --- src/connection.c |4 ++-- src/scanner.c|2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/connection.c b/src/connection.c index 4ac5bf8..746f445 100644 --- a/

[weston PATCH v11 3/3] clients: add the test case for set_maximised

2012-02-13 Thread juan . j . zhao
From: Juan Zhao F8: set maximised F7: set toplevel to back --- clients/Makefile.am |6 +- clients/simple-rect.c | 646 + 2 files changed, 651 insertions(+), 1 deletions(-) create mode 100644 clients/simple-rect.c diff --git a/clients/Makef

[weston PATCH v11 2/3] shell: add the set_maximised implementation

2012-02-13 Thread juan . j . zhao
From: Juan Zhao --- src/shell.c | 96 +++--- 1 files changed, 91 insertions(+), 5 deletions(-) diff --git a/src/shell.c b/src/shell.c index 66c4f01..cd7a13f 100644 --- a/src/shell.c +++ b/src/shell.c @@ -81,6 +81,7 @@ enum shell_surface_type

[protocol PATCH v11] add set_maximised protocol

2012-02-13 Thread juan . j . zhao
From: Juan Zhao A request from the client to notify the compositor the maximised operation. The compositor will reply with a configure event telling the expected new surface size. The operation is completed on the next buffer attach to this surface. A maximised client will fill the fullscreen

[PATCH or PULL v11 0/3] set_maximised implemetation protocol + weston

2012-02-13 Thread juan . j . zhao
From: Juan Zhao v6: I rebase the set_maximised work at first. Because it is independed with fullscreen protocol. v7: update the protocol comments remove some unnecessary printf add output parameter, only the bound output can be set maximised to move the geometry calculation to map an

[PATCH v2 1/2] Added logging methods.

2012-02-13 Thread Ustun Ergenoglu
From: Üstün Ergenoğlu Signed-off-by: Üstün Ergenoğlu --- src/Makefile.am |2 + src/compositor.c |3 + src/log.c| 141 ++ src/log.h| 75 + 4 files changed, 221 insertions(+), 0 deletions(-

[PATCH v2 0/2] Logging functions

2012-02-13 Thread Ustun Ergenoglu
From: Üstün Ergenoğlu Here's another attempt to add some logging functionality, this time on Weston instead of Wayland as Thiago suggested. In addittion, I added the WL_LOG_* macros that include the file and line info in the printed log lines. Üstün Ergenoğlu (2): Added logging methods. Rep

[RFC] compositor: Introduce composite zoom. v1

2012-02-13 Thread Scott Moreau
Implements a modelview matrix for transforms to simulate camera movement. Ideally, we would want to use +Scroll but that will have to wait for axis events to come. For now we double check for the binding in notify_key as a quick-n-dirty hack to avoid sending unwanted events. Zoom in/out with Super+

[debug patch] compositor debug: showrepaint hack

2012-02-13 Thread Pekka Paalanen
When ever an output is repainted, a random tint color is generated. All the repainted regions are tinted with this color. --- src/compositor.c | 16 src/compositor.h |2 ++ 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/compositor.c b/src/compositor.c in

[PULL] damage dealing rework

2012-02-13 Thread Pekka Paalanen
On Fri, 10 Feb 2012 17:21:23 +0200 Pekka Paalanen wrote: > Hi Kristian, > > here is most of what we talked about the other day, about moving damage > calls into weston_surface_update_transform(). I also took Tiago's "misc > cleanup" patch set, since it needed rebasing after these changes. > > I