views:

113

answers:

2

I'm using pyglet for my OpenGL based game but is it the fastest library out there which has a python wrapper? I could create a C++ extension and use any C++ multimedia library. Are there any C++ libraries that are worth investing time into or is it not worth the extra work?

Thank you.

A: 

I'd say (Py)SFML but I'm not sure of what your multimedia requirements are.

Klaim
A: 

Pygame is a python wrapper for the SDL library, which is widely used in game developing and provides OpenGL, sound and input management. To my knowledge at least SDL is quite fast, and the wrapper just encapsulates the binary functionality for python usage. Depending on your usage you can accomplish high speed.

gre