gestures_bucket_t

Structure representing the gesture bucket.

Synopsis:

typedef struct  {
    struct gesture_base ** gestures ;
    _Uint32t gestures_count ;
    _Uint32t size ;
}gestures_bucket_t;

Data:

struct gesture_base ** gestures
The array of gestures.
_Uint32t gestures_count
The number of gestures currently in the bucket.
_Uint32t size
The total allocated size of the bucket (measured in number of increments of gesture_base_t size)

Library:

libgestures

Description:

This structure represents the set of gestures awaiting processing. The gesture bucket grows indefinitely by GESTURES_BUCKET_GROW_INCREMENT every time it reaches size.