# HG changeset patch # User Ryan C. Gordon # Date 1057077354 0 # Node ID 564716cfb5020eaa64ddf197fad1f387cd990cf7 # Parent de622b7108bf34f50abd5cfe35a3acfe5db874b7 Removed direct dependency on OpenGL (call current_video->glGetString() instead of glGetString() directly)...otherwise we'd have to explicitly link to a libGL. --ryan. diff -r de622b7108bf -r 564716cfb502 src/video/x11/SDL_x11gl.c --- a/src/video/x11/SDL_x11gl.c Tue Jul 01 01:18:27 2003 +0000 +++ b/src/video/x11/SDL_x11gl.c Tue Jul 01 16:35:54 2003 +0000 @@ -240,7 +240,7 @@ if (where || *extension == '\0') return 0; - extensions = glGetString(GL_EXTENSIONS); + extensions = current_video->glGetString(GL_EXTENSIONS); /* It takes a bit of care to be fool-proof about parsing the * OpenGL extensions string. Don't be fooled by sub-strings, * etc. */