Change between FULLSCREEN/WINDOW mode?

nobody wrote on Monday, January 31, 2005:

Is there a way to change between these modes in the windows implementation?

augusto camarrotti

marcus256 wrote on Thursday, February 03, 2005:

Yes: glfwCloseWindow() + glfwOpenWindow(), which works on all platforms.

Remember: this destroys the OpenGL rendering context (i.e. you need to upload textures again etc), as well as the GLFW window context (you need to register callback functions again etc).

Also see section 2.2 in the GLFW FAQ on the homepage.

augustoccl wrote on Friday, February 11, 2005:

Thanks Marcus.

I guess this will do for me.

Augusto Camarotti