Fixed incorrect prototype for glXQueryExtensionsString()

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40647
This commit is contained in:
Sam Lantinga 2003-07-09 15:32:21 +00:00
parent c15617d050
commit 2abc16fc04
2 changed files with 2 additions and 2 deletions

View File

@ -441,7 +441,7 @@ int X11_GL_LoadLibrary(_THIS, const char* path)
this->gl_data->glXGetConfig =
(int (*)(Display *, XVisualInfo *, int, int *)) dlsym(handle, "glXGetConfig");
this->gl_data->glXQueryExtensionsString =
(const char (*)(Display *, int)) dlsym(handle, "glXQueryExtensionsString");
(const char *(*)(Display *, int)) dlsym(handle, "glXQueryExtensionsString");
/* We don't compare below for this in case we're not using Mesa. */
this->gl_data->glXReleaseBuffersMESA =

View File

@ -77,7 +77,7 @@ struct SDL_PrivateGLData {
( Display* dpy,
GLXDrawable drawable );
const char (*glXQueryExtensionsString)
const char *(*glXQueryExtensionsString)
( Display* dpy,
int screen);