File Coverage

lib/SDL2/MultiGestureEvent.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package SDL2::MultiGestureEvent {
2 2     2   16 use SDL2::Utils;
  2         3  
  2         22  
3             has
4             type => 'uint32',
5             timestamp => 'uint32',
6             touchId => 'opaque', # SDL_TouchID
7             dTheta => 'float',
8             dDist => 'float',
9             x => 'float',
10             y => 'float',
11             numFingers => 'uint16',
12             padding => 'uint16';
13              
14             =encoding utf-8
15              
16             =head1 NAME
17              
18             SDL2::MultiGestureEvent - Multiple finger gesture event structure
19              
20             =head1 SYNOPSIS
21              
22             use SDL2 qw[:all];
23             # TODO: I need to whip up a quick example
24              
25             =head1 DESCRIPTION
26            
27              
28             =head1 Fields
29              
30             =over
31              
32             =item C - C
33              
34             =item C - In milliseconds, populated using L<< C|SDL2::FFI/C >>
35              
36             =item C - The touch device id
37              
38             =item C
39              
40             =item C
41              
42             =item C
43              
44             =item C
45              
46             =item C
47              
48             =item C
49              
50             =back
51              
52             =head1 AUTHOR
53              
54             Sanko Robinson Esanko@cpan.orgE
55              
56             =begin stopwords
57              
58              
59             =end stopwords
60              
61             =cut
62              
63             };
64             1;