I have some visualization software running on python24 using an older
version of pyopengl. I have been upgrading to python25 and one thing
missing is the gle library. I notice that the demos for this dont work
either. The code needs a gle32.dll which is loaded in platform/win32
try:
GLE = ctypesloader.loadLibrary( ctypes.cdll, 'gle32' )
GLE.FunctionType = ctypes.CFUNCTYPE
Hunting around for this I find mcfletch in his blog saying "GLE DLL is
a PITA" and talks about having a batch file to compile this, however I
have not been able to track this down in the source... I have the gle
source distribution and can compile the lib file, however it looks like
I have to link in with the glut library as well to make a dll.
Any suggestions as to where this might be found? Or anyone got a
precompiled version?
Thanx in advance
|