From: Leon Brocard Date: Fri, 16 Oct 2009 13:23:29 +0000 (+0100) Subject: Add missing PixelFormat.pm X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=sdlgit%2FSDL_perl.git;a=commitdiff_plain;h=71c323f9f6f8b9235d34476910dd7648da48a9d1 Add missing PixelFormat.pm --- 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