Lines Matching defs:touches
51 struct input_mt_pos *touches)
59 touches[i].x = (buf[index] & 0x0f);
60 touches[i].x <<= 8;
61 touches[i].x |= buf[index + 2];
63 touches[i].y = (buf[index] & 0xf0);
64 touches[i].y <<= 4;
65 touches[i].y |= buf[index + 1];
71 struct input_mt_pos touches[EKTF2127_MAX_TOUCHES];
78 "Too many touches %d > %d\n",
83 ektf2127_parse_coordinates(buf, touch_count, touches);
84 input_mt_assign_slots(ts->input, slots, touches,
91 touches[i].x, touches[i].y, true);