Home | History | Annotate | Download | only in input

Lines Matching refs:acceleration

27  * Specifies parameters that govern pointer or wheel acceleration.
39 // The scaled speed at which acceleration begins to be applied.
41 // small precise motions that are performed without any acceleration.
47 // The scaled speed at which maximum acceleration is applied.
49 // the range of speeds over which the acceleration factor is interpolated.
50 // The wider the range, the smoother the acceleration.
56 // The acceleration factor.
61 // Default is 1.0 (no acceleration).
62 float acceleration;
65 scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) {
69 float highThreshold, float acceleration) :
71 highThreshold(highThreshold), acceleration(acceleration) {
76 * Implements mouse pointer and wheel speed control and acceleration.
86 * This has the effect of nullifying any acceleration. */