1
0
Fork 0
forked from wry/wry
wry/jay-config/src/input/acceleration.rs
2022-05-16 18:21:56 +02:00

14 lines
502 B
Rust

//! Constants determining the acceleration profile of a device.
//!
//! See the libinput documentation for details.
use bincode::{Decode, Encode};
/// The acceleration profile of a device.
#[derive(Encode, Decode, Copy, Clone, Debug, Hash, Eq, PartialEq)]
pub struct AccelProfile(pub u32);
/// A flat acceleration profile.
pub const ACCEL_PROFILE_FLAT: AccelProfile = AccelProfile(1 << 0);
/// An adaptive acceleration profile.
pub const ACCEL_PROFILE_ADAPTIVE: AccelProfile = AccelProfile(1 << 1);