File Coverage

blib/lib/SDL/Rect.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::Rect;
2 24     24   29422 use strict;
  24         29  
  24         623  
3 24     24   82 use warnings;
  24         27  
  24         511  
4 24     24   70 use vars qw(@ISA @EXPORT @EXPORT_OK);
  24         27  
  24         1149  
5             require Exporter;
6             require DynaLoader;
7 24     24   1747 use SDL::Constants ':SDL::Video';
  24         187  
  24         5182  
8             our @ISA = qw(Exporter DynaLoader);
9              
10 24     24   999 use SDL::Internal::Loader;
  24         28  
  24         1208  
11             internal_load_dlls(__PACKAGE__);
12              
13             bootstrap SDL::Rect;
14              
15 24     24   86 use base 'Exporter';
  24         31  
  24         2664  
16             our @EXPORT = @{ $SDL::Constants::EXPORT_TAGS{'SDL::Video'} };
17             our %EXPORT_TAGS = (
18             all => \@EXPORT,
19             color => $SDL::Constants::EXPORT_TAGS{'SDL::Video/color'},
20             surface => $SDL::Constants::EXPORT_TAGS{'SDL::Video/surface'},
21             video => $SDL::Constants::EXPORT_TAGS{'SDL::Video/video'},
22             overlay => $SDL::Constants::EXPORT_TAGS{'SDL::Video/overlay'},
23             grab => $SDL::Constants::EXPORT_TAGS{'SDL::Video/grab'},
24             palette => $SDL::Constants::EXPORT_TAGS{'SDL::Video/palette'},
25             gl => $SDL::Constants::EXPORT_TAGS{'SDL::Video/gl'}
26             );
27              
28             1;