On Tue, 2012-01-03 at 11:54 -0800, Bill Spitzak wrote:
>
> juan.j.z...@linux.intel.com wrote:
> > From: Juan Zhao
> >
> > support two methods:
> > "FORCE" means changing the screen resolution to the mode of the surface.
> > If there is no matched mode, just fallback to FILL mode.
> > "FILL"
juan.j.z...@linux.intel.com wrote:
From: Juan Zhao
support two methods:
"FORCE" means changing the screen resolution to the mode of the surface.
If there is no matched mode, just fallback to FILL mode.
"FILL" means changing fill the around of the surface to match the screen's mode.
curren
Hello,
I just pushed a commit that renames the wayland sample compositor to
"weston"[1]. Here's the reasoning from the commit message:
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository
On Tue, Jan 3, 2012 at 9:53 AM, Pekka Paalanen wrote:
> Hi,
>
> here is the majority of the compositor cleanups I did for
> compositor-x11. They depend on the patch "server: add
> wl_input_device_fini()" to the Wayland core.
Thanks, that's a great cleanup series. Pulled and pushed.
> Most of it
On Tue, Jan 3, 2012 at 9:32 AM, Pekka Paalanen wrote:
> Add a clean-up function for destroying all objects created in
> wl_input_device_init(). Can be used to fix memory leaks reported by
> Valgrind in the demos.
>
> The init function was also missing an explicit initialisation of the
> 'keys' arr
On Tue, Jan 3, 2012 at 9:32 AM, Pekka Paalanen wrote:
> Signed-off-by: Pekka Paalanen
Right, that was a left-over, thanks.
Kristian
> ---
> src/wayland-server.c | 2 --
> 1 files changed, 0 insertions(+), 2 deletions(-)
>
> diff --git a/src/wayland-server.c b/src/wayland-server.c
> index 0b
Hi,
here is the majority of the compositor cleanups I did for
compositor-x11. They depend on the patch "server: add
wl_input_device_fini()" to the Wayland core.
Most of it is trivial, but destroying global objects (input device,
maybe outputs) have their caveats. The main thing still not destroye
Signed-off-by: Pekka Paalanen
---
src/wayland-server.c |2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/wayland-server.c b/src/wayland-server.c
index 0b81706..92b5e57 100644
--- a/src/wayland-server.c
+++ b/src/wayland-server.c
@@ -70,7 +70,6 @@ struct wl_display {
Add a clean-up function for destroying all objects created in
wl_input_device_init(). Can be used to fix memory leaks reported by
Valgrind in the demos.
The init function was also missing an explicit initialisation of the
'keys' array. Add the explicit array init, although it is redundant with
the