{
const Eina_List *l;
E_Input_Device *dev;
+ int ptr_x = 0, ptr_y = 0;
EINA_LIST_FOREACH(e_input_devices_get(), l, dev)
{
ELOGF("COMP_SCREEN","EE Input Device Rotate: %d", NULL, rotation);
}
+
+ /* pointer */
+ e_input_device_pointer_xy_get(NULL, &ptr_x, &ptr_y);
+
+ ELOGF("COMP_SCREEN", "EE Pointer Set to Center (%d, %d) -> (%d, %d)", NULL,
+ wl_fixed_to_int(e_comp_wl->ptr.x), wl_fixed_to_int(e_comp_wl->ptr.y), ptr_x, ptr_y);
+ e_comp_wl->ptr.x = wl_fixed_from_int(ptr_x);
+ e_comp_wl->ptr.y = wl_fixed_from_int(ptr_y);
+
+ e_pointer_mouse_move(e_comp->pointer, ptr_x, ptr_y);
}
}