# HG changeset patch # User Sam Lantinga # Date 1295391459 28800 # Node ID cd3a1d87cab7bc70b5b88db122a7e1a6f92e0a49 # Parent 6dfc9c4a9ae55f7a63f4aa98455a6ea81499a2ce Fixed build against 10.4 SDK diff -r 6dfc9c4a9ae5 -r cd3a1d87cab7 src/video/x11/SDL_x11opengl.c --- a/src/video/x11/SDL_x11opengl.c Tue Jan 18 14:26:30 2011 -0800 +++ b/src/video/x11/SDL_x11opengl.c Tue Jan 18 14:57:39 2011 -0800 @@ -64,6 +64,15 @@ #define GLX_CONTEXT_FLAGS_ARB 0x2094 #define GLX_CONTEXT_DEBUG_BIT_ARB 0x0001 #define GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 + +/* Typedef for the GL 3.0 context creation function */ +typedef GLXContext(*PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display * dpy, + GLXFBConfig config, + GLXContext + share_context, + Bool direct, + const int + *attrib_list); #endif #define OPENGL_REQUIRS_DLOPEN @@ -80,16 +89,6 @@ static void X11_GL_InitExtensions(_THIS); -/* Typedef for the GL 3.0 context creation function */ -#ifndef GLX_ARB_create_context -typedef GLXContext(*PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display * dpy, - GLXFBConfig config, - GLXContext - share_context, - Bool direct, - const int - *attrib_list); -#endif /* GLX_ARB_create_context */ int X11_GL_LoadLibrary(_THIS, const char *path)