File Coverage

blib/lib/SDL/GFX/Rotozoom.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::Rotozoom;
2 2     2   2933 use strict;
  2         4  
  2         76  
3 2     2   10 use warnings;
  2         5  
  2         65  
4 2     2   10 use vars qw(@ISA @EXPORT @EXPORT_OK);
  2         4  
  2         151  
5             require Exporter;
6             require DynaLoader;
7 2     2   14 use SDL::Constants ':SDL::GFX';
  2         4  
  2         355  
8             our @ISA = qw(Exporter DynaLoader);
9              
10 2     2   14 use SDL::Internal::Loader;
  2         4  
  2         144  
11             internal_load_dlls(__PACKAGE__);
12              
13             bootstrap SDL::GFX::Rotozoom;
14              
15 2     2   11 use base 'Exporter';
  2         4  
  2         300  
16             our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::GFX'} };
17             our %EXPORT_TAGS = (
18             all => \@EXPORT,
19             smoothing => $SDL::Constants::EXPORT_TAGS{'SDL::GFX/smoothing'}
20             );
21              
22             1;