Skip to content
Snippets Groups Projects
Commit bb52822e authored by Jonas Ådahl's avatar Jonas Ådahl
Browse files

Remove mention of delta coordinates having device specific direction


The event represent pointer motions on a screen, so this information is
unnecessary. It could also be confused for meaning the provided
coordinate's direction being device specific.

Signed-off-by: default avatarJonas Ådahl <jadahl@gmail.com>
parent 1f130404
No related branches found
No related tags found
No related merge requests found
...@@ -363,9 +363,9 @@ libinput_event_pointer_get_time( ...@@ -363,9 +363,9 @@ libinput_event_pointer_get_time(
/** /**
* @ingroup event_pointer * @ingroup event_pointer
* *
* Return the delta between the last event and the current event. The axis' * Return the delta between the last event and the current event. For pointer
* positive direction is device-specific. For pointer events that are * events that are not of type LIBINPUT_EVENT_POINTER_MOTION, this function
* not of type LIBINPUT_EVENT_POINTER_MOTION, this function returns 0. * returns 0.
* *
* @note It is an application bug to call this function for events other than * @note It is an application bug to call this function for events other than
* LIBINPUT_EVENT_POINTER_MOTION. * LIBINPUT_EVENT_POINTER_MOTION.
...@@ -379,9 +379,9 @@ libinput_event_pointer_get_dx( ...@@ -379,9 +379,9 @@ libinput_event_pointer_get_dx(
/** /**
* @ingroup event_pointer * @ingroup event_pointer
* *
* Return the delta between the last event and the current event. The * Return the delta between the last event and the current event. For pointer
* axis' positive direction is device-specific. For pointer events that are * events that are not of type LIBINPUT_EVENT_POINTER_MOTION, this function
* not of type LIBINPUT_EVENT_POINTER_MOTION, this function returns 0. * returns 0.
* *
* @note It is an application bug to call this function for events other than * @note It is an application bug to call this function for events other than
* LIBINPUT_EVENT_POINTER_MOTION. * LIBINPUT_EVENT_POINTER_MOTION.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment