Just a couple typos spotted
On Thu, Oct 30, 2014 at 01:19:15PM -0400, Frederic Plourde wrote:
>
> @@ -617,20 +694,24 @@ drm_output_repaint(struct weston_output *output_base,
>output->next->fb_id, 0, 0,
>&output->connector_id
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 bia
在 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 appre
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 lo
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 li
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 implem
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.
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
evdev_device_init_pointer_
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 set
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
--- a/
Converting to integer before the sqrt calculation can cause loss of
motion at low speed.
---
src/filter.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/filter.c b/src/filter.c
index 205cd03..afb87ef 100644
--- a/src/filter.c
+++ b/src/filter.c
@@ -139,8 +139,8 @@ trac
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 b
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
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 bit
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 dr
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 = output_base->composito
---
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
weston_CPPFLAGS
---
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 = $(
On Wed, 29 Oct 2014 13:44:44 +0100
Marek Chalupa 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: Marek Chalupa
On Wed, 29 Oct 2014 08:48:12 -0700
Virtual Presence 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 then signals a
> mutex condi
On Wed, 29 Oct 2014 20:01:33 +
Daniel Stone 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 > wrote:
> > > On 24 October 2014 11:18, Pekka Paalanen > >
> > > wrote:
> > I th
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
---
src/wayland-server.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/wayland-ser
22 matches
Mail list logo