Merge "AArch64 support" into tizen
[platform/adaptation/xf86-input-gesture.git] / src / gesture.c
index 7dede7e..1c8330f 100755 (executable)
@@ -111,7 +111,6 @@ void GestureHandleButtonReleaseEvent(int screen_num, InternalEvent *ev, DeviceIn
 void GestureHandleMotionEvent(int screen_num, InternalEvent *ev, DeviceIntPtr device);
 
 //Gesture recognizer helper
-static Bool PointInBorderSize(WindowPtr pWin, int x, int y);
 static WindowPtr GestureWindowOnXY(int x, int y);
 Bool GestureHasFingerEventMask(int eventType, int num_finger);
 static double get_angle(int x1, int y1, int x2, int y2);
@@ -194,16 +193,6 @@ printk(const char* fmt, ...)
        va_end(argptr);
 }
 
-static Bool
-PointInBorderSize(WindowPtr pWin, int x, int y)
-{
-    BoxRec box;
-    if( pixman_region_contains_point (&pWin->borderSize, x, y, &box) )
-       return TRUE;
-
-    return FALSE;
-}
-
 static WindowPtr
 GestureWindowOnXY(int x, int y)
 {