Merge branch 'redesign' of github.com:kthakore/SDL_perl into redesign
Kartik Thakore [Fri, 16 Oct 2009 13:29:32 +0000 (09:29 -0400)]
.gitignore
lib/SDL/PixelFormat.pm [new file with mode: 0644]

index d6de4ae..df98469 100644 (file)
@@ -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 (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