Bugs item #1863687, was opened at 2008-01-03 19:46
Message generated for change (Comment added) made by mcfletch
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105988&aid=1863687&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: GL
Group: v3.0.0
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
>Assigned to: Mike C. Fletcher (mcfletch)
Summary: Error in 3.0.0b1 loading extendes GL functions
Initial Comment:
There is an Error in the baseplatform.py under Windows.
functionTypeFor cannot be found in the load method of _NullFunctionPointer class.
----------------------------------------------------------------------
>Comment By: Mike C. Fletcher (mcfletch)
Date: 2008-01-07 10:28
Message:
Logged In: YES
user_id=34901
Originator: NO
Fixed in current CVS.
----------------------------------------------------------------------
Comment By: Markus Wankus (markus_wankus)
Date: 2008-01-05 17:03
Message:
Logged In: YES
user_id=1028084
Originator: NO
More specifically, the error is:
File
"c:\python25\lib\site-packages\PyOpenGL-3.0.0b1-py2.5.egg\OpenGL\platform\baseplatform.py",
line 234, in load
func = functionTypeFor( self.DLL )(
NameError: global name 'functionTypeFor' is not defined
This can be fixed by changing the line in question from:
func = functionTypeFor( self.DLL )(
to:
func = platform.PLATFORM.functionTypeFor( self.DLL )(
Mark.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105988&aid=1863687&group_id=5988
|