Answer the question
In order to leave comments, you need to log in
LWJGL + Ubuntu = no fullscreen?
The essence of the problem is, the full screen can only be done if it is with the resolution of the monitor itself.
DisplayMode mode = Display.getDesktopDisplayMode();<br/>
Display.setFullscreen(true);<br/>
Display.setDisplayMode(mode);<br/>
Display.create(pf);
DisplayMode mode = new DisplayMode(800, 600);<br/>
Display.setFullscreen(true);<br/>
Display.setDisplayMode(mode);<br/>
Display.create(pf);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question