FabriceSalvaire / PyOpenGLng

An OpenGL CFFI (and ctypes) binding for Python
http://fabricesalvaire.github.io/PyOpenGLng
GNU General Public License v3.0
10 stars 2 forks source link

Consider GLFW as a lightweight solution to get OpenGL contexts #4

Closed FabriceSalvaire closed 10 years ago

FabriceSalvaire commented 10 years ago

Up to now, the hight level API and thus PyQt are required to get an OpenGL context.

GLFW http://www.glfw.org (recommended by vispy dev Nicolas rougier) seems a good alternative to the quite old GLUT. A Python binding based on ctypes is available at https://github.com/rougier/pyglfw Moreover a CFFI python binding will permit to run demos on pypy, which is not possible actually.

FabriceSalvaire commented 10 years ago

done