Re: [pygame] GLSL in Pygame on a Mac

2006-12-17 Thread Brandon N
Thanks, that seems to be the solution. Interestingly, perhaps this is a Python feature that I am unaware of but this seems strange to me: import ctypes ctypes.util.find_library Traceback (most recent call last): File stdin, line 1, in ? AttributeError: 'module' object has no attribute

Re: [pygame] GLSL in Pygame on a Mac

2006-12-17 Thread Alex Holkner
Brandon N wrote: Thanks, that seems to be the solution. Interestingly, perhaps this is a Python feature that I am unaware of but this seems strange to me: import ctypes ctypes.util.find_library Traceback (most recent call last): File stdin, line 1, in ? AttributeError: 'module' object

Re: [pygame] GLSL in Pygame on a Mac

2006-12-17 Thread Brandon N
Interesting, I believe I have had this expressed to me before though it clearly has not sunken in. Thanks for the clarification. Cheers, Brandon On Dec 17, 2006, at 8:55 AM, Alex Holkner wrote: Brandon N wrote: Thanks, that seems to be the solution. Interestingly, perhaps this is a

[pygame] GLSL in Pygame on a Mac

2006-12-16 Thread Brandon N
Hello, I recently came across the GLSL example at: http://www.pygame.org/ wiki/GLSLExample This would appear to meet my needs for using GLSL from within pygame, but I cannot seem to get it working. First, as I am not really familiar with the Python wrapper of OpenGL, is that example

Re: [pygame] GLSL in Pygame on a Mac

2006-12-16 Thread Alex Holkner
Brandon N wrote: Hello, I recently came across the GLSL example at: http://www.pygame.org/ wiki/GLSLExample This would appear to meet my needs for using GLSL from within pygame, but I cannot seem to get it working. First, as I am not really familiar with the Python wrapper of OpenGL,