ecore-drm2: Add API function to allow setting pointer acceleration speed

Small patch to add a new API function which can be called from
Enlightenment in order to allow setting pointer acceleration speed.

ref T4736

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-08-24 11:32:51 -04:00
parent d798eca247
commit b43f6c14dd
2 changed files with 19 additions and 0 deletions

View File

@ -272,6 +272,17 @@ EAPI void ecore_drm2_device_window_set(Ecore_Drm2_Device *device, unsigned int w
*/
EAPI void ecore_drm2_device_pointer_max_set(Ecore_Drm2_Device *device, int w, int h);
/**
* Set pointer acceleration speed
*
* @param device
* @param speed
*
* @ingroup Ecore_Drm2_Device_Group
* @since 1.21
*/
EAPI void ecore_drm2_device_pointer_accel_speed_set(Ecore_Drm2_Device *device, double speed);
/**
* Set pointer value rotation
*

View File

@ -774,6 +774,14 @@ ecore_drm2_device_pointer_rotation_set(Ecore_Drm2_Device *device, int rotation)
return elput_input_pointer_rotation_set(device->em, rotation);
}
EAPI void
ecore_drm2_device_pointer_accel_speed_set(Ecore_Drm2_Device *device, double speed)
{
EINA_SAFETY_ON_NULL_RETURN(device);
elput_input_pointer_accel_speed_set(device->em, NULL, speed);
}
EAPI void
ecore_drm2_device_window_set(Ecore_Drm2_Device *device, unsigned int window)
{