From beada8854aba4491489a7af9adcfcf15e247b105 Mon Sep 17 00:00:00 2001 From: fayjf Date: Sun, 5 Feb 2012 19:00:31 +0000 Subject: [PATCH] Fixing call to "fghGetProcAddress" by giving the new name of the function git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1069 7f0cb862-5218-0410-a997-914c9d46530a --- freeglut/freeglut/src/x11/freeglut_window_x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freeglut/freeglut/src/x11/freeglut_window_x11.c b/freeglut/freeglut/src/x11/freeglut_window_x11.c index f810965..f4d50e1 100644 --- a/freeglut/freeglut/src/x11/freeglut_window_x11.c +++ b/freeglut/freeglut/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() ) {