git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1182
7f0cb862-5218-0410-a997-
914c9d46530a
/* Window pre-created by Android, no way to delete it */
}
-void fgPlatformSetWindow ( SFG_Window *window )
-{
- /* TODO: only a single window possible? */
-}
-
/*
* This function makes the current window visible
*/
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))
+ fgError("eglMakeCurrent: err=%x\n", eglGetError());
+}
extern void fghPlatformOpenWindowEGL( SFG_Window* window );
extern EGLConfig fghCreateNewContextEGL( SFG_Window* window );
extern void fghPlatformCloseWindowEGL( SFG_Window* window );
+extern void fgPlatformSetWindow ( SFG_Window *window );
#endif