[PyOpenGL-Devel] [ pyopengl-Bugs-557997 ] glCallLists crashes with Python 2.2
Brought to you by:
mcfletch
|
From: <no...@so...> - 2002-05-19 17:01:38
|
Bugs item #557997, was opened at 2002-05-19 17:01 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105988&aid=557997&group_id=5988 Category: GL Group: v2.0 Status: Open Resolution: None Priority: 5 Submitted By: Michael Krause (mkrause) Assigned to: Tarn Weisner Burton (twburton) Summary: glCallLists crashes with Python 2.2 Initial Comment: I am using PyOpenGL-2.0.0.44.win32-py2.2.exe and had to write this workaround: # The following two lines work with Python2.1, but crash with Python2.2, # so we have to loop over all characters # glListBase(self.fontlist_index) # glCallLists(text) for c in text: glCallList(self.fontlist_index + ord(c)) Is it just me or can anyone verify this? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105988&aid=557997&group_id=5988 |