[PATCH] Don't document an absent parameter.

2014-10-30 Thread Bryce Harrington
Quells a doxygen warning: src/wayland-server.c:790: warning: argument 'None' of command @param is not found in the argument list of wl_display::wl_display_create(void) Signed-off-by: Bryce Harrington br...@osg.samsung.com --- src/wayland-server.c | 1 - 1 file changed, 1 deletion(-) diff

Re: [PATCH Weston 1/1] desktop-shell: implement autolaunch

2014-10-30 Thread Pekka Paalanen
On Wed, 29 Oct 2014 20:01:33 + Daniel Stone dan...@fooishbar.org wrote: Hi, On Wednesday, October 29, 2014, Pekka Paalanen pekka.paala...@collabora.co.uk wrote: On Tue, 28 Oct 2014 16:46:24 + Daniel Stone dan...@fooishbar.org javascript:; wrote: On 24 October 2014 11:18,

Re: Reusing wl_egl_window for multiple EGL surfaces

2014-10-30 Thread Pekka Paalanen
On Wed, 29 Oct 2014 08:48:12 -0700 Virtual Presence virtualpresence.u...@gmail.com wrote: Thank you for the detailed gyaan. I will look into the sub-surface protocol as an alternative. What I do as of now is have the 2 threads on a 3 second timer where threadA renders triangle for 3 seconds

Re: [PATCH weston] xwayland: fix fullscreening

2014-10-30 Thread Ryo Munakata
On Wed, 29 Oct 2014 13:44:44 +0100 Marek Chalupa mchqwe...@gmail.com wrote: set_fullscreen has been sending configure before changing the state and xwayland windows added border to the fullscreen size. This fixes the bug: https://bugs.freedesktop.org/show_bug.cgi?id=83502 Signed-off-by:

[weston V2 1/2] Check for math (m) and real time (rt) libraries

2014-10-30 Thread Javier Jardón
--- Makefile.am | 19 +-- configure.ac | 6 ++ 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/Makefile.am b/Makefile.am index 1e7cc81..1557953 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,7 +44,7 @@ weston_LDFLAGS = -export-dynamic weston_CPPFLAGS =

[weston V2 2/2] Use AC_SEARCH_LIBS instead of AC_CHECK_LIBS for dl, jpeg, pam

2014-10-30 Thread Javier Jardón
--- Makefile.am | 8 +++- configure.ac | 23 ++- 2 files changed, 9 insertions(+), 22 deletions(-) diff --git a/Makefile.am b/Makefile.am index 1557953..077efbc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,7 +44,7 @@ weston_LDFLAGS = -export-dynamic

Re: [WESTON PATCH 2/2] compositor-drm: Watchdog timer implementation

2014-10-30 Thread Frederic Plourde
On 14-10-29 05:40 PM, Bill Spitzak wrote: On 10/29/2014 12:19 PM, Frederic Plourde wrote: Mhh... you mean something like : static int drm_output_watchdog_timer_create(struct drm_output *output) { struct wl_event_loop *loop = NULL; struct weston_compositor *ec =

[PATCH weston v2 2/2] compositor-drm: Watchdog timer implementation

2014-10-30 Thread Frederic Plourde
Weston will not repaint until previous update has been acked by a page-flip event coming from the drm driver. However, some buggy drivers won't return those events or will stop sending them at some point and Weston output repaints will completely freeze. To ease developers' task in testing their

[PATCH weston v2 1/1] compositor: Add idle timeout option to weston.ini

2014-10-30 Thread Frederic Plourde
Weston's idle timeout can already be set via the '-i' command-line option, but this patch lets users specify it also via weston.ini. Note that the command-line option takes precedence over the .ini, should the option be set by both. This patch also Updates weston.ini man page with idle-timeout

Re: [RFC PATCH v2 0/6] Initial per-surface color management

2014-10-30 Thread Kai-Uwe Behrmann
Am 29.10.2014 um 20:15 schrieb Niels Ole Salscheider: On Tuesday 28 October 2014, 15:45:18, Kai-Uwe Behrmann wrote: Am 27.10.2014 um 19:07 schrieb Niels Ole Salscheider: The support to mask the area of a surface so that its color space is not converted has been removed. Instead, the color

[PATCH libinput 3/4] evdev: add DPI to evdev calculations

2014-10-30 Thread Derek Foreman
Assume normal mice are 400DPI, and that all calculations should be normalized to this before being fed into the filter. There isn't yet a way to configure a device's DPI. --- src/evdev.c | 6 -- src/evdev.h | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/evdev.c

[PATCH libinput 4/4] config: Allow setting non-default device DPI

2014-10-30 Thread Derek Foreman
This allows changing a device's DPI from the default 400 --- src/evdev.c| 7 +++ src/evdev.h| 3 +++ src/libinput.c | 7 +++ src/libinput.h | 22 ++ 4 files changed, 39 insertions(+) diff --git a/src/evdev.c b/src/evdev.c index 8efa21a..e267320 100644 ---

[PATCH libinput 1/4] filter: Fix typo

2014-10-30 Thread Derek Foreman
accelator - accelerator --- src/evdev.c | 2 +- src/filter.c | 2 +- src/filter.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/evdev.c b/src/evdev.c index dd2228b..341f7d8 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -981,7 +981,7 @@ int

Python Project

2014-10-30 Thread martins scun
Hi everybody! I have a project for developing a Python based OS. Just for fun.It will use the Linux kernel and a python runtime to execute core modules and apps. Currently, I'm working on porting Wayland to python. If anybody's interested, I appreciate any help, specially from experienced devs.

[PATCH libinput 0/4] some acceleration fixes, mostly for high DPI mice

2014-10-30 Thread Derek Foreman
The acceleration filter currently isn't particularly pleased with gaming mice. They generally have high DPI (can be over 8000 DPI) and can have high update rates (1000+ per second). This can result in the accel curve being biased heavily towards the high points on the accel curve. This patch

Re: Reusing wl_egl_window for multiple EGL surfaces

2014-10-30 Thread Virtual Presence
I see, on the server side there are helpful APIs like wl_event_loop_add_timer and wl_event_source_timer_update to integrate timers into event loop but unfortunately not so on client side. I guess it might not make sense for libwaylandclient to have such APIs but instead the app/toolkits that

Re: [PATCH libinput v2] evdev: Log evdev event queue overflows

2014-10-30 Thread Peter Hutterer
On Wed, Oct 29, 2014 at 09:56:27AM -0500, Derek Foreman wrote: Log a message when the kernel event queue overflows and events are dropped. After 10 messages logging stops to avoid flooding the logs if the condition is persistent. merged locally, thanks. but please sign off your patches to

Re: [PATCH libinput v2] evdev: Log evdev event queue overflows

2014-10-30 Thread Derek Foreman
On 30/10/14 07:14 PM, Peter Hutterer wrote: On Wed, Oct 29, 2014 at 09:56:27AM -0500, Derek Foreman wrote: Log a message when the kernel event queue overflows and events are dropped. After 10 messages logging stops to avoid flooding the logs if the condition is persistent. merged locally,

Re: Python Project

2014-10-30 Thread microcai
在 2014年10月30日 星期四 21:36:15,martins scun 写道: Hi everybody! I have a project for developing a Python based OS. Just for fun.It will use the Linux kernel and a python runtime to execute core modules and apps. Currently, I'm working on porting Wayland to python. If anybody's interested, I

Re: [PATCH libinput 0/4] some acceleration fixes, mostly for high DPI mice

2014-10-30 Thread Peter Hutterer
On Thu, Oct 30, 2014 at 04:34:12PM -0500, Derek Foreman wrote: The acceleration filter currently isn't particularly pleased with gaming mice. They generally have high DPI (can be over 8000 DPI) and can have high update rates (1000+ per second). This can result in the accel curve being biased