[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] Using PyOpenGL for 2D graphics



Greg Ewing wrote:
Another useful technique is to put frequently-used sequences
of operations into display lists, then you can invoke them
with just a single Python call.
This last optimization gave me my biggest improvement in OpenGL speed, dramatically increasing the FPS when drawing lots of identical sprites. It ended up being the only optimization I needed.

-Jasper