Lines Matching defs:max_touches
1653 * @max_touches The maximum number of simultaneous touches, or 0 for unlimited.
1658 InitTouchClassDeviceStruct(DeviceIntPtr device, unsigned int max_touches,
1683 touch->max_touches = max_touches;
1684 if (max_touches == 0)
1685 max_touches = 5; /* arbitrary number plucked out of the air */
1686 touch->touches = calloc(max_touches, sizeof(*touch->touches));
1689 touch->num_touches = max_touches;
1690 for (i = 0; i < max_touches; i++)
1697 device->last.touches = calloc(max_touches, sizeof(*device->last.touches));
1717 * @max_touches The maximum number of simultaneous touches, or 0 for unlimited.
1720 InitGestureClassDeviceStruct(DeviceIntPtr device, unsigned int max_touches)
1732 g->max_touches = max_touches;