Compare commits
1 Commits
master
...
submit/DDX
Author | SHA1 | Date | |
---|---|---|---|
|
ecbac74e7f |
|
@ -53,6 +53,15 @@ SOFTWARE.
|
||||||
|
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
|
|
||||||
|
typedef struct _DDXTouchPointInfo {
|
||||||
|
uint32_t client_id; /* touch ID as seen in client events */
|
||||||
|
Bool active; /* whether or not the touch is active */
|
||||||
|
uint32_t ddx_id; /* touch ID given by the DDX */
|
||||||
|
Bool emulate_pointer;
|
||||||
|
|
||||||
|
ValuatorMask *valuators; /* last axis values as posted, pre-transform */
|
||||||
|
} DDXTouchPointInfoRec;
|
||||||
|
|
||||||
void InitCoreDevices(void);
|
void InitCoreDevices(void);
|
||||||
void InitXTestDevices(void);
|
void InitXTestDevices(void);
|
||||||
|
|
||||||
|
|
|
@ -330,15 +330,6 @@ typedef struct _TouchPointInfo {
|
||||||
size_t history_size; /* Size of history in elements */
|
size_t history_size; /* Size of history in elements */
|
||||||
} TouchPointInfoRec;
|
} TouchPointInfoRec;
|
||||||
|
|
||||||
typedef struct _DDXTouchPointInfo {
|
|
||||||
uint32_t client_id; /* touch ID as seen in client events */
|
|
||||||
Bool active; /* whether or not the touch is active */
|
|
||||||
uint32_t ddx_id; /* touch ID given by the DDX */
|
|
||||||
Bool emulate_pointer;
|
|
||||||
|
|
||||||
ValuatorMask *valuators; /* last axis values as posted, pre-transform */
|
|
||||||
} DDXTouchPointInfoRec;
|
|
||||||
|
|
||||||
typedef struct _TouchClassRec {
|
typedef struct _TouchClassRec {
|
||||||
int sourceid;
|
int sourceid;
|
||||||
TouchPointInfoPtr touches;
|
TouchPointInfoPtr touches;
|
||||||
|
|
Loading…
Reference in New Issue