Re: [AD] Releases and OS X |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On Thu, Apr 24, 2008 at 8:12 AM, Jon Rafkind <workmin@xxxxxxxxxx> wrote:
> Peter( or anyone on osx ) would you mind doing nm on the various dylib's
> in /System/Library/Frameworks/Opengl/ and find the dylib that contains
> symbols like
>
> _glBindFramebufferEXT
> _glCheckFramebufferStatusEXT
> _glGenFramebuffersEXT
>
This still hasn't been sorted out. Can Jon or anyone else with Leopard
please compile this short program (attached) with
gcc gl_link_test.c -framework OpenGL -W -Wall
It will crash if you run it but I just want to see if it links. It
does on 10.4 but I suspect it won't on 10.5.
Pete
#include <OpenGL/OpenGL.h>
#include <OpenGL/gl.h>
int main()
{
glBindFramebufferEXT(0, 0);
return 0;
}