LWJGL Forum

Programming => Lightweight Java Gaming Library => Topic started by: snocavotia on July 07, 2015, 23:57:49

Title: Convenient way to switch Resolution in lwjgl3?
Post by: snocavotia on July 07, 2015, 23:57:49
Its been around 14 months since I last used LWJGL and im finding that I can no longer easily switch the resolution on the fly because of the lack of DisplayMode. I used to be able to use the method located at: http://wiki.lwjgl.org/wiki/LWJGL_Basics_5_(Fullscreen)#Convenience_method_to_Switch_Resolution

But that no longer works. Any help is greatly appreciated.
Title: Re: Convenient way to switch Resolution in lwjgl3?
Post by: snocavotia on July 08, 2015, 00:08:26
I was able to finally resize the window with GLFW.glfwSetWindowSize(long, int, int) Just for future reference.