File Coverage

blib/lib/SDL/GFX.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package SDL::GFX;
2 7     7   4791 use strict;
  7         15  
  7         200  
3 7     7   37 use warnings;
  7         14  
  7         221  
4 7     7   39 use vars qw(@ISA @EXPORT @EXPORT_OK);
  7         14  
  7         490  
5             require Exporter;
6             require DynaLoader;
7 7     7   51 use SDL::Constants ':SDL::GFX';
  7         15  
  7         825  
8             our @ISA = qw(Exporter DynaLoader);
9              
10 7     7   51 use SDL::Internal::Loader;
  7         12  
  7         491  
11             internal_load_dlls(__PACKAGE__);
12              
13             our $VERSION = 2.548;
14              
15             bootstrap SDL::GFX;
16              
17 7     7   42 use base 'Exporter';
  7         21  
  7         1265  
18             our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::GFX'} };
19             our %EXPORT_TAGS = (
20             all => \@EXPORT,
21             init => $SDL::Constants::EXPORT_TAGS{'SDL::GFX/init'}
22             );
23              
24             1;