File Coverage

blib/lib/SDL/GFX/ImageFilter.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::ImageFilter;
2 2     2   1634 use strict;
  2         7  
  2         71  
3 2     2   14 use warnings;
  2         4  
  2         72  
4 2     2   14 use vars qw(@ISA @EXPORT @EXPORT_OK);
  2         5  
  2         139  
5             require Exporter;
6             require DynaLoader;
7 2     2   12 use SDL::Constants ':SDL::GFX';
  2         3  
  2         228  
8             our @ISA = qw(Exporter DynaLoader);
9              
10 2     2   15 use SDL::Internal::Loader;
  2         4  
  2         181  
11             internal_load_dlls(__PACKAGE__);
12              
13             our $VERSION = 2.548;
14              
15             bootstrap SDL::GFX::ImageFilter;
16              
17 2     2   18 use base 'Exporter';
  2         13  
  2         350  
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;