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 <
[email protected]>
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.
POD ERRORS
Hey! The above document had some coding errors, which are explained
below:
Around line 11:
Unknown directive: =head