File Coverage

blib/lib/SDL/Image.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package SDL::Image;
2 13     13   1526 use strict;
  13         16  
  13         316  
3 13     13   39 use warnings;
  13         14  
  13         242  
4 13     13   42 use vars qw(@ISA @EXPORT @EXPORT_OK);
  13         12  
  13         643  
5             require Exporter;
6             require DynaLoader;
7 13     13   52 use SDL::Constants ':SDL::Image';
  13         22  
  13         1088  
8 13     13   1241 use SDL::Surface;
  13         19  
  13         1952  
9             our @ISA = qw(Exporter DynaLoader);
10              
11 13     13   62 use SDL::Internal::Loader;
  13         15  
  13         591  
12             internal_load_dlls(__PACKAGE__);
13              
14             bootstrap SDL::Image;
15              
16 13     13   133 use base 'Exporter';
  13         12  
  13         1222  
17             our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::Image'} };
18             our %EXPORT_TAGS = (
19             all => \@EXPORT,
20             init => $SDL::Constants::EXPORT_TAGS{'SDL::Video/init'}
21             );
22              
23             1;