diff options
author | Simon Thum <simon.thum@gmx.de> | 2010-01-01 19:58:05 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-01-01 11:22:42 -0800 |
commit | 1763550d0181ac1c775b9ddf490114eff2fbe67e (patch) | |
tree | 59315a3b06c641a48b56c9ef905b4dfb323046f3 /dix/ptrveloc.c | |
parent | 435f27667f84269768efecde34de4af2b2d43376 (diff) |
dix: add smooth limited pointer acceleration profile
This profile is inspired by the accel code removed from the wacom driver.
It ascends from zero to acceleration, maxing out at threshold. This means you
can control the slope using threshold, which wasn't possible in wacom.
For sanity's sake, threshold should grow with acceleration.
Works best with adaptive deceleration, since otherwise it only generates
acceleration above 1, causing seldom pixel skips.
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'dix/ptrveloc.c')
-rw-r--r-- | dix/ptrveloc.c | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/dix/ptrveloc.c b/dix/ptrveloc.c index 6fb9e2122..c2f43784c 100644 --- a/dix/ptrveloc.c +++ b/dix/ptrveloc.c @@ -868,6 +868,31 @@ SmoothLinearProfile( } +/** + * From 0 to threshold, the response graduates smoothly from min_accel to + * acceleration. Beyond threshold it is exactly the specified acceleration. + */ +static float +SmoothLimitedProfile( + DeviceIntPtr dev, + DeviceVelocityPtr vel, + float velocity, + float threshold, + float acc) +{ + float res; + + if(velocity >= threshold || threshold == 0.0f) + return acc; + + velocity /= threshold; /* should be [0..1[ now */ + + res = CalcPenumbralGradient(velocity) * (acc - vel->min_acceleration); + + return vel->min_acceleration + res; +} + + static float LinearProfile( DeviceIntPtr dev, @@ -879,7 +904,6 @@ LinearProfile( return acc * velocity; } - static float NoProfile( DeviceIntPtr dev, @@ -911,6 +935,8 @@ GetAccelerationProfile( return PowerProfile; case AccelProfileLinear: return LinearProfile; + case AccelProfileSmoothLimited: + return SmoothLimitedProfile; case AccelProfileNone: return NoProfile; default: |