Thread: [PyOpenGL-Users] glut import error bug state
Brought to you by:
mcfletch
From: altern <al...@gm...> - 2007-07-31 08:47:52
|
hi just upgraded to python 2.5 and pyopengl 3.0.0a6 under XP. Any solutions to this problem? http://sourceforge.net/mailarchive/message.php?msg_id=464D0AF5.2080303%40vrplumber.com I double checked and glut32.dll was installed in c:\windows\system32 thanks enrike |
From: Brian J. <bri...@gm...> - 2007-07-31 16:37:24
|
I get the same error message with opengl32.dll and glut32.dll in C:\Windows\system32\ and C:\python25. On 7/31/07, altern <al...@gm...> wrote: > > hi > > just upgraded to python 2.5 and pyopengl 3.0.0a6 under XP. Any solutions > to this problem? > > > http://sourceforge.net/mailarchive/message.php?msg_id=464D0AF5.2080303%40vrplumber.com > > I double checked and glut32.dll was installed in c:\windows\system32 > > thanks > > enrike > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > PyOpenGL Homepage > http://pyopengl.sourceforge.net > _______________________________________________ > PyOpenGL-Users mailing list > PyO...@li... > https://lists.sourceforge.net/lists/listinfo/pyopengl-users > |
From: Mike C. F. <mcf...@vr...> - 2007-08-01 16:33:56
|
altern wrote: > hi > > just upgraded to python 2.5 and pyopengl 3.0.0a6 under XP. Any solutions > to this problem? > > http://sourceforge.net/mailarchive/message.php?msg_id=464D0AF5.2080303%40vrplumber.com > > I double checked and glut32.dll was installed in c:\windows\system32 > It *should* work on Win32 with the current cvs, but we haven't had any Win32 testers yet, so it's quite possible there's still a bug there. As for not finding your glut32, that's a new bug, likely. Can you check out the CVS version, run setup.py develop and then trace through the code in platform/win32.py to see where it's failing (not sure of your level of Python comfort, there's a module called "pdb" that allows for tracing through python code). If you can trace down into the ctypes code to see why it isn't finding your library I can probably figure out how to fix it. Enjoy yourself, Mike -- ________________________________________________ Mike C. Fletcher Designer, VR Plumber, Coder http://www.vrplumber.com http://blog.vrplumber.com |
From: altern <al...@gm...> - 2007-08-03 08:58:15
|
Mike C. Fletcher(e)k dio: > altern wrote: >> hi >> >> just upgraded to python 2.5 and pyopengl 3.0.0a6 under XP. Any >> solutions to this problem? >> >> http://sourceforge.net/mailarchive/message.php?msg_id=464D0AF5.2080303%40vrplumber.com >> >> >> I double checked and glut32.dll was installed in c:\windows\system32 >> > It *should* work on Win32 with the current cvs, but we haven't had any > Win32 testers yet, so it's quite possible there's still a bug there. As > for not finding your glut32, that's a new bug, likely. > > Can you check out the CVS version, run setup.py develop and then trace > through the code in platform/win32.py to see where it's failing (not > sure of your level of Python comfort, there's a module called "pdb" that > allows for tracing through python code). If you can trace down into the > ctypes code to see why it isn't finding your library I can probably > figure out how to fix it. ok, i am not sure if i will have time to do this before i go on holidays. Otherwise i will try after. thanks! enrike > Enjoy yourself, > Mike > |
From: JoN <jo...@we...> - 2007-11-05 11:20:37
|
I have a similar problem in an identical environment. Python 2.5.1 PyOpenGL-3.0.0a6 PyOpenGL-Demo-3.0.0a6 Windows XP SP2 (Actually, come to think of it....I had no problems before SP2!) If I run lesson6.py from the NeHe demos (actually it happens on other progs including ones I wrote myself that used to work), I get: C:\Python25\Lib\site-packages\PyOpenGL_Demo-3.0.0a6-py2.5.egg\PyOpenGL-Demo\NeHe >lesson6.py Hit ESC key to quit. Traceback (most recent call last): File "build\bdist.win32\egg\OpenGL\GLUT\special.py", line 107, in safeCall return function( *args, **named ) File "C:\Python25\Lib\site-packages\PyOpenGL_Demo-3.0.0a6-py2.5.egg\PyOpenGL-D emo\NeHe\lesson6.py", line 117, in DrawGLScene glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT) # Clear The Screen And T he Depth Buffer File "build\bdist.win32\egg\OpenGL\error.py", line 188, in glCheckError baseOperation = baseOperation, GLError: GLError( err = 1285, description = 'out of memory', baseOperation = glClear, cArguments = (16640,) ) GLUT callback forcing low-level exit on error: GLError( err = 1285, description = 'out of memory', baseOperation = glClear, cArguments = (16640,) ) C:\Python25\Lib\site-packages\PyOpenGL_Demo-3.0.0a6-py2.5.egg\PyOpenGL-Demo\NeHe > Any clues? Mike? Anybody? Best Regs Jon Quoting altern <al...@gm...> > hi > > just upgraded to python 2.5 and pyopengl 3.0.0a6 under XP. Any solutions > to this problem? > > http://sourceforge.net/mailarchive/message.php?msg_id=464D0AF5.2080303%40vrplumber.com > > I double checked and glut32.dll was installed in c:\windows\system32 > > thanks > > enrike > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > PyOpenGL Homepage > http://pyopengl.sourceforge.net > _______________________________________________ > PyOpenGL-Users mailing list > PyO...@li... > https://lists.sourceforge.net/lists/listinfo/pyopengl-users > -------------------------------------------------------------------- Come and visit Web Prophets Website at http://www.webprophets.net.au |
From: JoN <jo...@we...> - 2007-11-09 04:12:58
|
This really is a low-traffic list isn't it. :) Quoting JoN <jo...@we...>: > > I have a similar problem in an identical environment. > > Python 2.5.1 > PyOpenGL-3.0.0a6 > PyOpenGL-Demo-3.0.0a6 > > Windows XP SP2 (Actually, come to think of it....I had no problems before > SP2!) > > > If I run lesson6.py from the NeHe demos (actually it happens on other progs > including ones I wrote myself that used to work), I get: > > C:\Python25\Lib\site-packages\PyOpenGL_Demo-3.0.0a6-py2.5.egg\PyOpenGL-Demo\NeHe > >lesson6.py > Hit ESC key to quit. > Traceback (most recent call last): > File "build\bdist.win32\egg\OpenGL\GLUT\special.py", line 107, in safeCall > return function( *args, **named ) > File > "C:\Python25\Lib\site-packages\PyOpenGL_Demo-3.0.0a6-py2.5.egg\PyOpenGL-D > emo\NeHe\lesson6.py", line 117, in DrawGLScene > glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT) # Clear The Screen > And T > he Depth Buffer > File "build\bdist.win32\egg\OpenGL\error.py", line 188, in glCheckError > baseOperation = baseOperation, > GLError: GLError( > err = 1285, > description = 'out of memory', > baseOperation = glClear, > cArguments = (16640,) > ) > GLUT callback forcing low-level exit on error: GLError( > err = 1285, > description = 'out of memory', > baseOperation = glClear, > cArguments = (16640,) > ) > > C:\Python25\Lib\site-packages\PyOpenGL_Demo-3.0.0a6-py2.5.egg\PyOpenGL-Demo\NeHe > > > > > Any clues? Mike? Anybody? > > > Best Regs > Jon > > > > > > Quoting altern <al...@gm...> > > > hi > > > > just upgraded to python 2.5 and pyopengl 3.0.0a6 under XP. Any solutions > > to this problem? > > > > > http://sourceforge.net/mailarchive/message.php?msg_id=464D0AF5.2080303%40vrplumber.com > > > > I double checked and glut32.dll was installed in c:\windows\system32 > > > > thanks > > > > enrike > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > PyOpenGL Homepage > > http://pyopengl.sourceforge.net > > _______________________________________________ > > PyOpenGL-Users mailing list > > PyO...@li... > > https://lists.sourceforge.net/lists/listinfo/pyopengl-users > > > > > > > -------------------------------------------------------------------- > Come and visit Web Prophets Website at http://www.webprophets.net.au > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > PyOpenGL Homepage > http://pyopengl.sourceforge.net > _______________________________________________ > PyOpenGL-Users mailing list > PyO...@li... > https://lists.sourceforge.net/lists/listinfo/pyopengl-users > -------------------------------------------------------------------- Come and visit Web Prophets Website at http://www.webprophets.net.au |