From: Sylvain Beucler Date: Thu, 19 Apr 2012 20:52:55 +0000 (+0000) Subject: EGL: Declare fgPlatformSetWindow earlier to fix C warning X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=7aa457069fed730005ace942780a49eb13551610;p=freeglut EGL: Declare fgPlatformSetWindow earlier to fix C warning git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1243 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/egl/fg_window_egl.c b/src/egl/fg_window_egl.c index b465756..e6b6a00 100644 --- a/src/egl/fg_window_egl.c +++ b/src/egl/fg_window_egl.c @@ -92,6 +92,15 @@ EGLContext fghCreateNewContextEGL( SFG_Window* window ) { return context; } +void fgPlatformSetWindow ( SFG_Window *window ) +{ + if (eglMakeCurrent(fgDisplay.pDisplay.egl.Display, + window->Window.pContext.egl.Surface, + window->Window.pContext.egl.Surface, + window->Window.Context) == EGL_FALSE) + fgError("eglMakeCurrent: err=%x\n", eglGetError()); +} + /* * Really opens a window when handle is available */ @@ -129,12 +138,3 @@ void fghPlatformCloseWindowEGL( SFG_Window* window ) window->Window.pContext.egl.Surface = EGL_NO_SURFACE; } } - -void fgPlatformSetWindow ( SFG_Window *window ) -{ - if (eglMakeCurrent(fgDisplay.pDisplay.egl.Display, - window->Window.pContext.egl.Surface, - window->Window.pContext.egl.Surface, - window->Window.Context) == EGL_FALSE) - fgError("eglMakeCurrent: err=%x\n", eglGetError()); -}