line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package SDL::GFX::Primitives; |
2
|
12
|
|
|
12
|
|
1187
|
use strict; |
|
12
|
|
|
|
|
54
|
|
|
12
|
|
|
|
|
338
|
|
3
|
12
|
|
|
12
|
|
43
|
use warnings; |
|
12
|
|
|
|
|
12
|
|
|
12
|
|
|
|
|
245
|
|
4
|
12
|
|
|
12
|
|
40
|
use vars qw(@ISA @EXPORT @EXPORT_OK); |
|
12
|
|
|
|
|
12
|
|
|
12
|
|
|
|
|
529
|
|
5
|
|
|
|
|
|
|
require Exporter; |
6
|
|
|
|
|
|
|
require DynaLoader; |
7
|
12
|
|
|
12
|
|
112
|
use SDL::Constants ':SDL::GFX'; |
|
12
|
|
|
|
|
16
|
|
|
12
|
|
|
|
|
1123
|
|
8
|
|
|
|
|
|
|
our @ISA = qw(Exporter DynaLoader); |
9
|
|
|
|
|
|
|
|
10
|
12
|
|
|
12
|
|
53
|
use SDL::Internal::Loader; |
|
12
|
|
|
|
|
14
|
|
|
12
|
|
|
|
|
573
|
|
11
|
|
|
|
|
|
|
internal_load_dlls(__PACKAGE__); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
bootstrap SDL::GFX::Primitives; |
14
|
|
|
|
|
|
|
|
15
|
12
|
|
|
12
|
|
41
|
use base 'Exporter'; |
|
12
|
|
|
|
|
12
|
|
|
12
|
|
|
|
|
1150
|
|
16
|
|
|
|
|
|
|
our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::GFX'} }; |
17
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( |
18
|
|
|
|
|
|
|
all => \@EXPORT, |
19
|
|
|
|
|
|
|
init => $SDL::Constants::EXPORT_TAGS{'SDL::GFX/init'} |
20
|
|
|
|
|
|
|
); |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |