Re: [PATCH] Xinput: Use floats for ConstantDeceleration and AdaptiveDeceleration

2008-11-18 Thread Adam Jackson
On Mon, 2008-11-17 at 14:15 +1000, Peter Hutterer wrote:
> On Fri, Nov 14, 2008 at 02:08:24PM -0800, Keith Packard wrote:
> > These values need not be constrained to integer values.
> > 
> > Signed-off-by: Keith Packard <[EMAIL PROTECTED]>
>
> Signed-off-by: Peter Hutterer <[EMAIL PROTECTED]>

Applied, thanks.

- ajax


signature.asc
Description: This is a digitally signed message part
___
xorg mailing list
xorg@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/xorg

Re: [PATCH] Xinput: Use floats for ConstantDeceleration and AdaptiveDeceleration

2008-11-16 Thread Peter Hutterer
On Fri, Nov 14, 2008 at 02:08:24PM -0800, Keith Packard wrote:
> These values need not be constrained to integer values.
> 
> Signed-off-by: Keith Packard <[EMAIL PROTECTED]>
> ---
>  hw/xfree86/common/xf86Xinput.c |8 
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/hw/xfree86/common/xf86Xinput.c b/hw/xfree86/common/xf86Xinput.c
> index f028a25..c785c45 100644
> --- a/hw/xfree86/common/xf86Xinput.c
> +++ b/hw/xfree86/common/xf86Xinput.c
> @@ -130,16 +130,16 @@ ProcessVelocityConfiguration(char* devname, pointer 
> list, DeviceVelocityPtr s){
>   xf86Msg(X_CONFIG, "%s: (accel) filter stage %i: %.2f ms\n",
>  devname, i, 1.0f / (s->filters[i].rdecay));
>  
> -tempf = xf86SetIntOption(list, "ConstantDeceleration", 1);
> -if(tempf > 1.0){
> +tempf = xf86SetRealOption(list, "ConstantDeceleration", 1.0);
> +if(tempf != 1.0){
>  xf86Msg(X_CONFIG, "%s: (accel) constant deceleration by %.1f\n",
>  devname, tempf);
>  s->const_acceleration = 1.0 / tempf;   /* set reciprocal deceleration
>alias acceleration */
>  }
>  
> -tempf = xf86SetIntOption(list, "AdaptiveDeceleration", 1);
> -if(tempf > 1.0){
> +tempf = xf86SetRealOption(list, "AdaptiveDeceleration", 1.0);
> +if(tempf != 1.0){
>  xf86Msg(X_CONFIG, "%s: (accel) adaptive deceleration by %.1f\n",
>  devname, tempf);
>  s->min_acceleration = 1.0 / tempf;   /* set minimum acceleration */


Signed-off-by: Peter Hutterer <[EMAIL PROTECTED]>

Cheers,
  Peter
___
xorg mailing list
xorg@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/xorg


[PATCH] Xinput: Use floats for ConstantDeceleration and AdaptiveDeceleration

2008-11-14 Thread Keith Packard
These values need not be constrained to integer values.

Signed-off-by: Keith Packard <[EMAIL PROTECTED]>
---
 hw/xfree86/common/xf86Xinput.c |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/xfree86/common/xf86Xinput.c b/hw/xfree86/common/xf86Xinput.c
index f028a25..c785c45 100644
--- a/hw/xfree86/common/xf86Xinput.c
+++ b/hw/xfree86/common/xf86Xinput.c
@@ -130,16 +130,16 @@ ProcessVelocityConfiguration(char* devname, pointer list, 
DeviceVelocityPtr s){
xf86Msg(X_CONFIG, "%s: (accel) filter stage %i: %.2f ms\n",
 devname, i, 1.0f / (s->filters[i].rdecay));
 
-tempf = xf86SetIntOption(list, "ConstantDeceleration", 1);
-if(tempf > 1.0){
+tempf = xf86SetRealOption(list, "ConstantDeceleration", 1.0);
+if(tempf != 1.0){
 xf86Msg(X_CONFIG, "%s: (accel) constant deceleration by %.1f\n",
 devname, tempf);
 s->const_acceleration = 1.0 / tempf;   /* set reciprocal deceleration
   alias acceleration */
 }
 
-tempf = xf86SetIntOption(list, "AdaptiveDeceleration", 1);
-if(tempf > 1.0){
+tempf = xf86SetRealOption(list, "AdaptiveDeceleration", 1.0);
+if(tempf != 1.0){
 xf86Msg(X_CONFIG, "%s: (accel) adaptive deceleration by %.1f\n",
 devname, tempf);
 s->min_acceleration = 1.0 / tempf;   /* set minimum acceleration */
-- 
1.5.6.5

___
xorg mailing list
xorg@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/xorg