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
This commit is contained in:
parent
b954aa8212
commit
f8979fafb9
@ -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());
|
||||
}
|
||||
|
Reference in New Issue
Block a user