ecore-drm: Remove unused function

Summary: Since we now have a reference to the actual output inside the
input device, we no longer need this function to update the Input
device's view of the output size.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-01-13 10:29:59 -05:00
parent 2eb0be048b
commit 79a09007bc
1 changed files with 0 additions and 18 deletions

View File

@ -194,24 +194,6 @@ const struct libinput_interface _input_interface =
_cb_close_restricted,
};
void
_ecore_drm_inputs_update_output(Ecore_Drm_Device *dev, int w, int h)
{
Ecore_Drm_Seat *seat;
Ecore_Drm_Evdev *edev;
Eina_List *l, *ll;
EINA_LIST_FOREACH(dev->seats, l, seat)
{
EINA_LIST_FOREACH(seat->devices, ll, edev)
{
edev->output.w = w;
edev->output.h = h;
ecore_drm_inputs_device_axis_size_set(edev, w, h);
}
}
}
/* public functions */
EAPI Eina_Bool
ecore_drm_inputs_create(Ecore_Drm_Device *dev)