rawaccel/common/accel-noaccel.hpp
a1xd 5b659e1cfb add per-device configuration
adds input and [in, out] cap for classic mode
adds input cap for power mode
change wrapper/input, now gets useful device names
change (now dev specific) dpi to adjust sensitivity
change y sensitivity to y/x ratio
remove spaced LUTs

grapher and convert do not build
2021-09-23 22:28:44 -04:00

16 lines
333 B
C++

#pragma once
#include "rawaccel-base.hpp"
namespace rawaccel {
/// <summary> Struct to hold acceleration implementation which applies no acceleration. </summary>
struct accel_noaccel {
accel_noaccel(const accel_args&) {}
accel_noaccel() = default;
double operator()(double, const accel_args&) const { return 1; }
};
}