Lines Matching defs:touches
52 struct input_mt_pos *touches)
60 touches[i].x = (buf[index] & 0x0f);
61 touches[i].x <<= 8;
62 touches[i].x |= buf[index + 2];
64 touches[i].y = (buf[index] & 0xf0);
65 touches[i].y <<= 4;
66 touches[i].y |= buf[index + 1];
72 struct input_mt_pos touches[EKTF2127_MAX_TOUCHES];
79 "Too many touches %d > %d\n",
84 ektf2127_parse_coordinates(buf, touch_count, touches);
85 input_mt_assign_slots(ts->input, slots, touches,
92 touches[i].x, touches[i].y, true);