Add missing PixelFormat.pm
Leon Brocard [Fri, 16 Oct 2009 13:23:29 +0000 (14:23 +0100)]
lib/SDL/PixelFormat.pm [new file with mode: 0644]

diff --git a/lib/SDL/PixelFormat.pm b/lib/SDL/PixelFormat.pm
new file mode 100644 (file)
index 0000000..3f29e86
--- /dev/null
@@ -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<SDL::PixelFormat > stores surface format information
+
+=head1 METHODS
+
+=head1 SEE ALSO
+
+L<SDL::Surface>
+
+=cut