ecore_drm2: Add API function to set pointer max values

This commit is contained in:
Christopher Michael 2023-11-22 07:12:58 -05:00
parent ef1b33598b
commit 2382b4ab73
2 changed files with 9 additions and 0 deletions

View File

@ -69,6 +69,7 @@ EAPI void ecore_drm2_device_cursor_size_get(Ecore_Drm2_Device *dev, int *width,
EAPI void ecore_drm2_device_preferred_depth_get(Ecore_Drm2_Device *dev, int *depth, int *bpp);
EAPI void ecore_drm2_device_screen_size_range_get(Ecore_Drm2_Device *dev, int *minw, int *minh, int *maxw, int *maxh);
EAPI const Eina_List *ecore_drm2_device_crtcs_get(Ecore_Drm2_Device *dev);
EAPI void ecore_drm2_device_pointer_max_set(Ecore_Drm2_Device *dev, int w, int h);
/* Display API functions */
EAPI char *ecore_drm2_display_name_get(Ecore_Drm2_Display *disp);

View File

@ -377,3 +377,11 @@ ecore_drm2_device_crtcs_get(Ecore_Drm2_Device *dev)
EINA_SAFETY_ON_NULL_RETURN_VAL(dev, NULL);
return dev->crtcs;
}
EAPI void
ecore_drm2_device_pointer_max_set(Ecore_Drm2_Device *dev, int w, int h)
{
EINA_SAFETY_ON_NULL_RETURN(dev);
EINA_SAFETY_ON_NULL_RETURN(dev->em);
elput_input_pointer_max_set(dev->em, w, h);
}