On 04/03/15 09:25, Tom Hacohen wrote:
> Commit guidelines.
>
> Mike, when you review commits, make sure they conform to our commit
> guidelines. In this case, the summary line. This is not a single
> instance, I've seen others too.


Oops, rereading this after comments from Chris on IRC, I forgot to 
mention what's wrong.

The problem here is the lack of the "ecore drm:" prefix, i.e the module 
prefix.

--
Tom.

>
>
> On 27/02/15 15:46, Derek Foreman wrote:
>> devilhorns pushed a commit to branch master.
>>
>> http://git.enlightenment.org/core/efl.git/commit/?id=95cb1938c22664095675ca21649856371385f393
>>
>> commit 95cb1938c22664095675ca21649856371385f393
>> Author: Derek Foreman <der...@osg.samsung.com>
>> Date:   Fri Feb 27 10:40:38 2015 -0500
>>
>>       Use doubles to store libinput's mouse motion
>>
>>       Summary:
>>       Using can result in motion being completely discarded.  Since we
>>       only need integer data, we also only actually forward on an event
>>       when the mouse moves more than a full unit.
>>
>>       Reviewers: zmike, devilhorns
>>
>>       Subscribers: cedric
>>
>>       Differential Revision: https://phab.enlightenment.org/D2062
>> ---
>>    src/lib/ecore_drm/ecore_drm_evdev.c   | 75 
>> +++++++++++++++++++++--------------
>>    src/lib/ecore_drm/ecore_drm_private.h |  3 +-
>>    2 files changed, 47 insertions(+), 31 deletions(-)
>>
>> diff --git a/src/lib/ecore_drm/ecore_drm_evdev.c 
>> b/src/lib/ecore_drm/ecore_drm_evdev.c
>> index 8320c30..054858a 100644
>> --- a/src/lib/ecore_drm/ecore_drm_evdev.c
>> +++ b/src/lib/ecore_drm/ecore_drm_evdev.c
>> @@ -347,15 +347,16 @@ _device_pointer_motion(Ecore_Drm_Evdev *edev, struct 
>> libinput_event_pointer *eve
>>
>>       if ((output = edev->output))
>>         {
>> -        if (edev->mouse.x < output->x)
>> -          edev->mouse.x = output->x;
>> -        else if (edev->mouse.x >= (output->x + output->current_mode->width))
>> -          edev->mouse.x = (output->x + output->current_mode->width - 1);
>> -
>> -        if (edev->mouse.y < output->y)
>> -          edev->mouse.y = output->y;
>> -        else if (edev->mouse.y >= (output->y + 
>> output->current_mode->height))
>> -          edev->mouse.y = (output->y + output->current_mode->height - 1);
>> +        if (edev->mouse.ix < output->x)
>> +          edev->mouse.dx = edev->mouse.ix = output->x;
>> +        else if (edev->mouse.ix >= (output->x + 
>> output->current_mode->width))
>> +          edev->mouse.dx =
>> +          edev->mouse.ix = (output->x + output->current_mode->width - 1);
>> +
>> +        if (edev->mouse.iy < output->y)
>> +          edev->mouse.dy = edev->mouse.iy = output->y;
>> +        else if (edev->mouse.iy >= (output->y + 
>> output->current_mode->height))
>> +          edev->mouse.dy = edev->mouse.iy = (output->y + 
>> output->current_mode->height - 1);
>>         }
>>
>>       ev->window = (Ecore_Window)input->dev->window;
>> @@ -367,8 +368,8 @@ _device_pointer_motion(Ecore_Drm_Evdev *edev, struct 
>> libinput_event_pointer *eve
>>       _device_modifiers_update(edev);
>>       ev->modifiers = edev->xkb.modifiers;
>>
>> -   ev->x = edev->mouse.x;
>> -   ev->y = edev->mouse.y;
>> +   ev->x = edev->mouse.ix;
>> +   ev->y = edev->mouse.iy;
>>       ev->root.x = ev->x;
>>       ev->root.y = ev->y;
>>
>> @@ -393,10 +394,15 @@ _device_handle_pointer_motion(struct libinput_device 
>> *device, struct libinput_ev
>>
>>       if (!(edev = libinput_device_get_user_data(device))) return;
>>
>> -   edev->mouse.x += libinput_event_pointer_get_dx(event);
>> -   edev->mouse.y += libinput_event_pointer_get_dy(event);
>> +   edev->mouse.dx += libinput_event_pointer_get_dx(event);
>> +   edev->mouse.dy += libinput_event_pointer_get_dy(event);
>>
>> -   _device_pointer_motion(edev, event);
>> +   if (floor(edev->mouse.dx) == edev->mouse.ix &&
>> +       floor(edev->mouse.dy) == edev->mouse.iy) return;
>> +
>> +   edev->mouse.ix = edev->mouse.dx;
>> +   edev->mouse.iy = edev->mouse.dy;
>> +  _device_pointer_motion(edev, event);
>>    }
>>
>>    static void
>> @@ -406,13 +412,16 @@ _device_handle_pointer_motion_absolute(struct 
>> libinput_device *device, struct li
>>
>>       if (!(edev = libinput_device_get_user_data(device))) return;
>>
>> -   edev->mouse.x =
>> -     libinput_event_pointer_get_absolute_x_transformed(event,
>> +   edev->mouse.dx =
>> +     libinput_event_pointer_get_absolute_x_transformed(event,
>>                                                           
>> edev->output->current_mode->width);
>> -   edev->mouse.y =
>> -     libinput_event_pointer_get_absolute_y_transformed(event,
>> +   edev->mouse.dy =
>> +     libinput_event_pointer_get_absolute_y_transformed(event,
>>                                                           
>> edev->output->current_mode->height);
>>
>> +   if (floor(edev->mouse.dx) == edev->mouse.ix &&
>> +       floor(edev->mouse.dy) == edev->mouse.iy) return;
>> +
>>       _device_pointer_motion(edev, event);
>>    }
>>
>> @@ -447,8 +456,8 @@ _device_handle_button(struct libinput_device *device, 
>> struct libinput_event_poin
>>       _device_modifiers_update(edev);
>>       ev->modifiers = edev->xkb.modifiers;
>>
>> -   ev->x = edev->mouse.x;
>> -   ev->y = edev->mouse.y;
>> +   ev->x = edev->mouse.ix;
>> +   ev->y = edev->mouse.iy;
>>       ev->root.x = ev->x;
>>       ev->root.y = ev->y;
>>
>> @@ -529,8 +538,8 @@ _device_handle_axis(struct libinput_device *device, 
>> struct libinput_event_pointe
>>       _device_modifiers_update(edev);
>>       ev->modifiers = edev->xkb.modifiers;
>>
>> -   ev->x = edev->mouse.x;
>> -   ev->y = edev->mouse.y;
>> +   ev->x = edev->mouse.ix;
>> +   ev->y = edev->mouse.iy;
>>       ev->root.x = ev->x;
>>       ev->root.y = ev->y;
>>
>> @@ -640,8 +649,8 @@ _device_handle_touch_event(Ecore_Drm_Evdev *edev, struct 
>> libinput_event_touch *e
>>       _device_modifiers_update(edev);
>>       ev->modifiers = edev->xkb.modifiers;
>>
>> -   ev->x = edev->mouse.x;
>> -   ev->y = edev->mouse.y;
>> +   ev->x = edev->mouse.ix;
>> +   ev->y = edev->mouse.iy;
>>       ev->root.x = ev->x;
>>       ev->root.y = ev->y;
>>
>> @@ -701,9 +710,9 @@ _device_handle_touch_down(struct libinput_device 
>> *device, struct libinput_event_
>>
>>       if (!(edev = libinput_device_get_user_data(device))) return;
>>
>> -   edev->mouse.x =
>> +   edev->mouse.ix = edev->mouse.dx =
>>         libinput_event_touch_get_x_transformed(event, 
>> edev->output->current_mode->width);
>> -   edev->mouse.y =
>> +   edev->mouse.iy = edev->mouse.dy =
>>         libinput_event_touch_get_y_transformed(event, 
>> edev->output->current_mode->height);
>>
>>       edev->mt_slot = libinput_event_touch_get_seat_slot(event);
>> @@ -723,11 +732,17 @@ _device_handle_touch_motion(struct libinput_device 
>> *device, struct libinput_even
>>
>>       if (!(ev = calloc(1, sizeof(Ecore_Event_Mouse_Move)))) return;
>>
>> -   edev->mouse.x =
>> +   edev->mouse.dx =
>>         libinput_event_touch_get_x_transformed(event, 
>> edev->output->current_mode->width);
>> -   edev->mouse.y =
>> +   edev->mouse.dy =
>>         libinput_event_touch_get_y_transformed(event, 
>> edev->output->current_mode->height);
>>
>> +   if (floor(edev->mouse.dx) == edev->mouse.ix &&
>> +       floor(edev->mouse.dy) == edev->mouse.iy) return;
>> +
>> +   edev->mouse.ix = edev->mouse.dx;
>> +   edev->mouse.iy = edev->mouse.dy;
>> +
>>       edev->mt_slot = libinput_event_touch_get_seat_slot(event);
>>
>>       ev->window = (Ecore_Window)input->dev->window;
>> @@ -740,8 +755,8 @@ _device_handle_touch_motion(struct libinput_device 
>> *device, struct libinput_even
>>       ev->modifiers = edev->xkb.modifiers;
>>       ev->modifiers = 0;
>>
>> -   ev->x = edev->mouse.x;
>> -   ev->y = edev->mouse.y;
>> +   ev->x = edev->mouse.ix;
>> +   ev->y = edev->mouse.iy;
>>       ev->root.x = ev->x;
>>       ev->root.y = ev->y;
>>
>> diff --git a/src/lib/ecore_drm/ecore_drm_private.h 
>> b/src/lib/ecore_drm/ecore_drm_private.h
>> index 03a7c27..cd2b6fe 100644
>> --- a/src/lib/ecore_drm/ecore_drm_private.h
>> +++ b/src/lib/ecore_drm/ecore_drm_private.h
>> @@ -183,7 +183,8 @@ struct _Ecore_Drm_Evdev
>>
>>       struct
>>         {
>> -        int x, y;
>> +        int ix, iy;
>> +        double dx, dy;
>>            unsigned int last, prev;
>>            double threshold;
>>            Eina_Bool did_double : 1;
>>
>
>
>
> ------------------------------------------------------------------------------
> Dive into the World of Parallel Programming The Go Parallel Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for all
> things parallel software development, from weekly thought leadership blogs to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> _______________________________________________
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>



------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to