From f8979fafb920e90efe350e46415d3df17de45098 Mon Sep 17 00:00:00 2001 From: beuc Date: Thu, 19 Apr 2012 20:52:55 +0000 Subject: [PATCH] EGL: Declare fgPlatformSetWindow earlier to fix C warning git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1243 7f0cb862-5218-0410-a997-914c9d46530a --- freeglut/freeglut/src/egl/fg_window_egl.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/freeglut/freeglut/src/egl/fg_window_egl.c b/freeglut/freeglut/src/egl/fg_window_egl.c index b465756..e6b6a00 100644 --- a/freeglut/freeglut/src/egl/fg_window_egl.c +++ b/freeglut/freeglut/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()); -}