~ubuntu-branches/ubuntu/vivid/xorg-server/vivid

« back to all changes in this revision

Viewing changes to include/inputstr.h

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-07-03 12:03:57 UTC
  • mfrom: (1.1.56)
  • Revision ID: package-import@ubuntu.com-20130703120357-caosebpn11zu2zj0
Tags: 2:1.14.1-0ubuntu0.8
Use correct version for libxfixes3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
 * events to the protocol, the server will not support these events until
72
72
 * this number here is bumped.
73
73
 */
74
 
#define XI2LASTEVENT    XI_RawTouchEnd
 
74
#define XI2LASTEVENT    XI_BarrierLeave
75
75
#define XI2MASKSIZE     ((XI2LASTEVENT >> 3) + 1)       /* no of bytes for masks */
76
76
 
77
77
/**
588
588
        XIPropertyHandlerPtr handlers;  /* NULL-terminated */
589
589
    } properties;
590
590
 
591
 
    /* coordinate transformation matrix for absolute input devices */
592
 
    struct pixman_f_transform transform;
 
591
    /* coordinate transformation matrix for relative movement. Matrix with
 
592
     * the translation component dropped */
 
593
    struct pixman_f_transform relative_transform;
 
594
    /* scale matrix for absolute devices, this is the combined matrix of
 
595
       [1/scale] . [transform] . [scale]. See DeviceSetTransform */
 
596
    struct pixman_f_transform scale_and_transform;
593
597
 
594
598
    /* XTest related master device id */
595
599
    int xtest_master_id;