From: Kartik Thakore Date: Fri, 16 Oct 2009 13:29:32 +0000 (-0400) Subject: Merge branch 'redesign' of github.com:kthakore/SDL_perl into redesign X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8e0fefab235a3196d58a6cd4a2b10343ba284c36;hp=8fb66c781c8b5bb0774800b4c41cb97fb12c5996;p=sdlgit%2FSDL_perl.git Merge branch 'redesign' of github.com:kthakore/SDL_perl into redesign --- diff --git a/.gitignore b/.gitignore index d6de4ae..df98469 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,8 @@ _build/ Build blib lib/SDL/Config.pm -SDL/ +lib/SDL/*.c +lib/SDL/*.xs SDL_perl.c SDL_perl.xs stage diff --git a/lib/SDL/PixelFormat.pm b/lib/SDL/PixelFormat.pm new file mode 100644 index 0000000..3f29e86 --- /dev/null +++ b/lib/SDL/PixelFormat.pm @@ -0,0 +1,31 @@ +package SDL::PixelFormat; +use strict; +use warnings; +require Exporter; +require DynaLoader; +our @ISA = qw(Exporter DynaLoader); +bootstrap SDL::PixelFormat; + +1; + +__END__ + +=pod + +=head1 NAME + +SDL::PixelFormat - Stores surface format information + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +An C stores surface format information + +=head1 METHODS + +=head1 SEE ALSO + +L + +=cut