From: John F. Fay Date: Sun, 5 Feb 2012 19:00:31 +0000 (+0000) Subject: Fixing call to "fghGetProcAddress" by giving the new name of the function X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=5a3e5c7b7749ca1b3de57591c90d6424d1dd4b86;p=freeglut Fixing call to "fghGetProcAddress" by giving the new name of the function git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1069 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/x11/freeglut_window_x11.c b/src/x11/freeglut_window_x11.c index f810965..f4d50e1 100644 --- a/src/x11/freeglut_window_x11.c +++ b/src/x11/freeglut_window_x11.c @@ -304,7 +304,7 @@ static GLXContext fghCreateNewContext( SFG_Window* window ) /* new context creation */ int attributes[9]; - CreateContextAttribsProc createContextAttribs = (CreateContextAttribsProc) fghGetProcAddress( "glXCreateContextAttribsARB" ); + CreateContextAttribsProc createContextAttribs = (CreateContextAttribsProc) fgPlatformGetProcAddress( "glXCreateContextAttribsARB" ); /* glXCreateContextAttribsARB not found, yet the user has requested the new context creation */ if ( !createContextAttribs && !fghIsLegacyContextRequested() ) {