EGL: Declare fgPlatformSetWindow earlier to fix C warning
authorSylvain Beucler <beuc@beuc.net>
Thu, 19 Apr 2012 20:52:55 +0000 (20:52 +0000)
committerSylvain Beucler <beuc@beuc.net>
Thu, 19 Apr 2012 20:52:55 +0000 (20:52 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1243 7f0cb862-5218-0410-a997-914c9d46530a

src/egl/fg_window_egl.c

index b465756..e6b6a00 100644 (file)
@@ -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());
-}