The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

OpenGL::List - Massively optimise your Perl OpenGL program with display lists

DESCRIPTION

glpList

  my $list_name = glpList {
      glBegin( GL_LINES );
      glVertex3f( 0, 0, 0 );
      glVertex3f( 1, 0, 0 );
      glVertex3f( 0, 0, 0 );
      glVertex3f( 0, 1, 0 );
      glVertex3f( 0, 0, 0 );
      glVertex3f( 0, 0, 1 );
      glEnd();
  };

The glpLine function is used to define a block of Perl OpenGL instructions that should be immediately compiled into a display list.

Returns a new display list name that can be passed to glCallList() later.

SUPPORT

Bugs should be reported via the CPAN bug tracker at

http://rt.cpan.org/NoAuth/ReportBug.html?Queue=OpenGL-List

AUTHOR

Adam Kennedy <adamk@cpan.org>

SEE ALSO

OpenGL

COPYRIGHT

Copyright 2010 Adam Kennedy.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 11:

Unknown directive: =head