[PyOpenGL-Devel] [ pyopengl-Bugs-3577573 ] glEndList gives error on virtual machine.
Brought to you by:
mcfletch
|
From: SourceForge.net <no...@so...> - 2012-10-16 14:07:29
|
Bugs item #3577573, was opened at 2012-10-16 00:43 Message generated for change (Comment added) made by kierun You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105988&aid=3577573&group_id=5988 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Demo Group: v2.0.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Yann Golanski (kierun) Assigned to: Mike C. Fletcher (mcfletch) Summary: glEndList gives error on virtual machine. Initial Comment: When I try to run the OpenGL demo GLUT/gears.py, I get the following traceback: OpenGL Warning: XGetVisualInfo returned 0 visuals for 0x98cb2a8 OpenGL Warning: Retry with 0xd4 returned 1 visuals OpenGL Warning: XGetVisualInfo returned 0 visuals for 0x98cb2a8 OpenGL Warning: Retry with 0xd4 returned 1 visuals Traceback (most recent call last): File "gears.py", line 264, in <module> init() File "gears.py", line 234, in init glEndList() File "errorchecker.pyx", line 50, in OpenGL_accelerate.errorchecker._ErrorChecker.glCheckError (src/errorchecker.c:1050) OpenGL.error.GLError: GLError( err = 1280, description = 'invalid enumerant', baseOperation = glEndList, cArguments = () ) I get the same error in my own code, but this is probably a better example to track the bug. Any idea what is causing this? ---------------------------------------------------------------------- >Comment By: Yann Golanski (kierun) Date: 2012-10-16 07:07 Message: Adding: OpenGL.ERROR_CHECKING = False fixed the problem and the code runs fine. I suspect a bug in the error checking code, maybe a type conversion? ---------------------------------------------------------------------- Comment By: Yann Golanski (kierun) Date: 2012-10-16 03:01 Message: A call to glIsList(gear1) just after line 230 returns GL_FALSE, if that helps at all. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105988&aid=3577573&group_id=5988 |