Make pygame's frame rate faster

Posted by Smashery on Game Development See other posts from Game Development or by Smashery
Published on 2010-07-16T01:27:10Z Indexed on 2011/02/08 23:35 UTC
Read the original article Hit count: 298

By profiling my game, I see that the vast majority of the execution time of my hobby game is between the blit and the flip calls. Currently, it's only running at around 13fps. My video card is fairly decent, so my guess is that pygame is not using it.

Does anyone know of any graphics/display options I need to set in pygame to make this faster? Or is this just something that I have to live with since I've chosen pygame?

© Game Development or respective owner

Related posts about graphics

Related posts about pygame