On Mar 8, 5:35 pm, Tristam MacDonald <[email protected]> wrote: > It runs beautifully for me on the default system Python and pyObjC, on a > fully-upgraded installation of OS 10.6.6. > > Well, beautifully apart from image loading, which appears to be completely > broken.
Where is the image loading failing? Since the image decoder imports the quartz module inside a try block and falls back to a (very slow) default loader if it encounters an exception, you might have to edit the pyglet/image/codecs/__init__.py file to get rid of the try-except surrounding the import. Or are you saying that it is importing the correct module but the loaded images are not appearing correctly? If this is a problem with the older version of PyObjC, then I have another version of the code that is pure ctypes (it was originally written this way, but I converted it to PyObjC because it was cleaner). So we could possibly just replace it. In the meantime, I will see if I can re-install the older version of PyObjC somewhere so that I can do some testing. --phillip -- You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en.
