[PATCH weston 3/6] compositor-wayland: Fix cursor coordinate transforms so it works on translated outputs

2013-11-07 Thread Jason Ekstrand
Signed-off-by: Jason Ekstrand --- src/compositor-wayland.c | 4 1 file changed, 4 deletions(-) diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c index 5f691a7..181d6bb 100644 --- a/src/compositor-wayland.c +++ b/src/compositor-wayland.c @@ -862,8 +862,6 @@ input_handle_pointe

[PATCH weston 4/6] compositor-wayland: Move config parsing into backend_init

2013-11-07 Thread Jason Ekstrand
This cleans up the configuration and command parsing and separates it from compositor/output initialization. Signed-off-by: Jason Ekstrand --- src/compositor-wayland.c | 172 +++ 1 file changed, 98 insertions(+), 74 deletions(-) diff --git a/src/compo

[PATCH weston 6/6] compositor-wayland: Add fullscreen support

2013-11-07 Thread Jason Ekstrand
This adds fullscreen support to the wayland backend. You can make any output fullscreen by the shortcut CTRL+ALT+F. You can also run weston with the --fullscreen option which causes it to create a single fullscreen output. Signed-off-by: Jason Ekstrand --- src/compositor-wayland.c | 296 ++

[PATCH weston 2/6] compositor-wayland: rename wayland_compositor.inputs to input_list

2013-11-07 Thread Jason Ekstrand
Signed-off-by: Jason Ekstrand --- src/compositor-wayland.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c index f71faa7..5f691a7 100644 --- a/src/compositor-wayland.c +++ b/src/compositor-wayland.c @@ -72,7 +72,7 @@ st

[PATCH weston 0/6] More wayland backend fixes/features

2013-11-07 Thread Jason Ekstrand
Most of these patches are bugfixes/cleanups. However, it does add two new features: a --scale option and fullscreen support. Fullscreen support works by either passing the --fullscreen option or by pressing CTRL+ALT+F while one of the outputs is focussed. If the --fullscreen option is passed, it

[PATCH weston 1/6] compositor-wayland: Remove unused output handling code

2013-11-07 Thread Jason Ekstrand
Signed-off-by: Jason Ekstrand --- src/compositor-wayland.c | 48 1 file changed, 48 deletions(-) diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c index 50bcb8d..f71faa7 100644 --- a/src/compositor-wayland.c +++ b/src/compositor-way

[PATCH weston 5/6] compositor-wayland: Add a --scale option

2013-11-07 Thread Jason Ekstrand
Signed-off-by: Jason Ekstrand --- src/compositor-wayland.c | 16 src/compositor.c | 1 + 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c index e5c6726..e688820 100644 --- a/src/compositor-wayland.c +++ b

Re: [PATCH weston 00/11] Wayland backend improvements

2013-11-07 Thread Kristian Høgsberg
On Sun, Oct 27, 2013 at 10:24:52PM -0500, Jason Ekstrand wrote: > This patch series substantially extends the wayland backend to add a number > of improvements. Currently, the X backend is the only backend capable of > easily testing various scenarios without having to hotplug/rotate physical > mo

Re: [PATCH] xdg-shell - yet another proposal (this time for real).

2013-11-07 Thread Gregory Merchan
I failed to reply to all. I hope copying and pasting hasn't messed up anything. On Thu, Nov 7, 2013 at 3:32 AM, Rafael Antognolli wrote: > Hello all, > > Following is the same description as in my previous wrong email, but with the > correct patch attached. > > I'm trying to summarize part of the

Re: [PATCH] xdg-shell - yet another proposal (this time for real).

2013-11-07 Thread Bill Spitzak
Rafael Antognolli wrote: So, I added "activated" and "deactivated" events, that the compositor can use to inform clients what they are. And there's a take_focus request Shouldn't that be called a "take_active" request? I can think of scenarios where it would be useful to get the keyboard foc

Some touchscreen support..

2013-11-07 Thread Oskari Rauta
Hi. I plan to use weston on Raspberry Pi with a touchscreen. I purchased a touchscreen that sports a eGalax touch digitizer. It seems not to be properly supported by Weston or.. Actually with nearly with any software, except tslib. Although even tslib didn't support my version(0x0100) before I p

Re: [PATCH] Do not release buffer when it is going to be used again.

2013-11-07 Thread Ander Conselvan de Oliveira
Em 06-11-2013 21:47, Axel Davy escreveu: Solve a bug for some fullscreen clients which wouldn't show up. Signed-off-by: Axel Davy --- src/compositor-drm.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/compositor-drm.c b/src/compositor-drm.c index 4f015d1..6a25

[PATCH] xdg-shell - yet another proposal (this time for real).

2013-11-07 Thread Rafael Antognolli
Hello all, Following is the same description as in my previous wrong email, but with the correct patch attached. I'm trying to summarize part of the discussion in this new patch, but it's not the final one. As far as I understood, the goal is to end up with something like this for keyboard focus

[PATCH] xdg_shell: Add a new shell protocol.

2013-11-07 Thread Rafael Antognolli
xdg_shell is a protocol aimed to substitute wl_shell in the long term, but will not be part of the wayland core protocol. It starts as a non-stable API, aimed to be used as a development place at first, and once features are defined as required by several desktop shells, we can finally make it stab