summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-02-21 09:21:56 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-02-21 09:35:23 +1000
commitc5d9ecbdae6251965341f932a7107e069f1b23a3 (patch)
treeb8893cdeca742e671a12e45925e390b54e8274ae /src
parent5515ecafec7da70269bf2699f9ed9f340675f2dd (diff)
Add the matching @see tags to the accel config
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src')
-rw-r--r--src/libinput.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libinput.h b/src/libinput.h
index 436923d..aa30cfa 100644
--- a/src/libinput.h
+++ b/src/libinput.h
@@ -4377,6 +4377,10 @@ libinput_device_config_send_events_get_default_mode(struct libinput_device *devi
* @param device The device to configure
*
* @return 0 if the device is not accelerated, nonzero if it is accelerated
+ *
+ * @see libinput_device_config_accel_set_speed
+ * @see libinput_device_config_accel_get_speed
+ * @see libinput_device_config_accel_get_default_speed
*/
int
libinput_device_config_accel_is_available(struct libinput_device *device);
@@ -4396,6 +4400,10 @@ libinput_device_config_accel_is_available(struct libinput_device *device);
* @param speed The normalized speed, in a range of [-1, 1]
*
* @return A config status code
+ *
+ * @see libinput_device_config_accel_is_available
+ * @see libinput_device_config_accel_get_speed
+ * @see libinput_device_config_accel_get_default_speed
*/
enum libinput_config_status
libinput_device_config_accel_set_speed(struct libinput_device *device,
@@ -4411,6 +4419,10 @@ libinput_device_config_accel_set_speed(struct libinput_device *device,
* @param device The device to configure
*
* @return The current speed, range -1 to 1
+ *
+ * @see libinput_device_config_accel_is_available
+ * @see libinput_device_config_accel_set_speed
+ * @see libinput_device_config_accel_get_default_speed
*/
double
libinput_device_config_accel_get_speed(struct libinput_device *device);
@@ -4424,6 +4436,10 @@ libinput_device_config_accel_get_speed(struct libinput_device *device);
*
* @param device The device to configure
* @return The default speed setting for this device.
+ *
+ * @see libinput_device_config_accel_is_available
+ * @see libinput_device_config_accel_set_speed
+ * @see libinput_device_config_accel_get_speed
*/
double
libinput_device_config_accel_get_default_speed(struct libinput_device *device);