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   1467 use strict;
  2         5  
  2         59  
3 2     2   12 use warnings;
  2         3  
  2         63  
4 2     2   13 use vars qw(@ISA @EXPORT @EXPORT_OK);
  2         3  
  2         125  
5             require Exporter;
6             require DynaLoader;
7 2     2   9 use SDL::Constants ':SDL::GFX';
  2         4  
  2         208  
8             our @ISA = qw(Exporter DynaLoader);
9              
10 2     2   25 use SDL::Internal::Loader;
  2         6  
  2         136  
11             internal_load_dlls(__PACKAGE__);
12              
13             our $VERSION = 2.548;
14              
15             bootstrap SDL::GFX::Rotozoom;
16              
17 2     2   18 use base 'Exporter';
  2         13  
  2         284  
18             our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::GFX'} };
19             our %EXPORT_TAGS = (
20             all => \@EXPORT,
21             smoothing => $SDL::Constants::EXPORT_TAGS{'SDL::GFX/smoothing'}
22             );
23              
24             1;