Skip to content

Commit a01b2ff

Browse files
committed
Bugfix for LWJGL fullscreen mode, create window properly
1 parent 8d4c6c6 commit a01b2ff

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

graphics-by-opengl-j2se/src/main/java/com/nucleus/J2SEWindow.java

-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,6 @@ protected Configuration prepareWindow(PropertySettings appSettings) {
263263
videoMode = init(appSettings);
264264
Configuration configuration = new Configuration(appSettings.version, appSettings.getConfiguration(),
265265
videoMode);
266-
videoMode = setVideoMode(videoMode, 0);
267266
return configuration;
268267
}
269268

graphics-by-opengl-jogl/src/main/java/com/nucleus/jogl/JOGLGLWindow.java

+2
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,12 @@ private void createNEWTWindow(PropertySettings appSettings) {
184184
glWindow.addKeyListener(this);
185185
glWindow.addWindowListener(this);
186186
glWindow.addGLEventListener(this);
187+
glWindow.setFullscreen(appSettings.fullscreen);
187188
animator = new Animator();
188189
animator.add(glWindow);
189190
animator.start();
190191
glWindow.setAutoSwapBufferMode(autoSwapBuffer);
192+
191193
}
192194

193195
private void createAWTWindow(PropertySettings appSettings) {

graphics-by-opengl-lwjgl3/src/main/java/com/nucleus/lwjgl3/GLFWWindow.java

+21-10
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,15 @@
3333
*/
3434
public abstract class GLFWWindow extends J2SEWindow implements GLFWWindowIconifyCallbackI {
3535

36+
public static final int DEFAULT_MONITOR_INDEX = 0;
37+
3638
protected static final int MAX_MOUSE_BUTTONS = 3;
3739
protected long window;
3840
protected PointerBuffer monitors;
3941
protected int[] buttonActions = new int[MAX_MOUSE_BUTTONS];
4042
protected int[] cursorPosition = new int[2];
4143
protected Hashtable<Integer, Integer> GLFWKeycodes;
44+
protected int monitorIndex = DEFAULT_MONITOR_INDEX;
4245

4346
/**
4447
*
@@ -56,6 +59,8 @@ public VideoMode init(PropertySettings appSettings) {
5659
if (!GLFW.glfwInit()) {
5760
throw new IllegalStateException("Unable to initialize glfw");
5861
}
62+
monitors = getMonitors();
63+
listVideoModes(monitors.get(monitorIndex));
5964
SurfaceConfiguration config = appSettings.getConfiguration();
6065
SimpleLogger.d(getClass(), "GLFW version :" + GLFW.glfwGetVersionString());
6166
SimpleLogger.d(getClass(),
@@ -75,11 +80,15 @@ public VideoMode init(PropertySettings appSettings) {
7580
GLFW.glfwWindowHint(GLFW.GLFW_RESIZABLE, GLFW.GLFW_FALSE);
7681
GLFW.glfwWindowHint(GLFW.GLFW_SAMPLES, config.getSamples());
7782
SimpleLogger.d(getClass(), "Set samples: " + config.getSamples());
78-
window = GLFW.glfwCreateWindow(appSettings.width, appSettings.height, "", MemoryUtil.NULL, MemoryUtil.NULL);
83+
if (appSettings.fullscreen) {
84+
window = GLFW.glfwCreateWindow(appSettings.width, appSettings.height, "", monitors.get(monitorIndex),
85+
MemoryUtil.NULL);
86+
} else {
87+
window = GLFW.glfwCreateWindow(appSettings.width, appSettings.height, "", MemoryUtil.NULL, MemoryUtil.NULL);
88+
}
7989
if (window == MemoryUtil.NULL) {
8090
throw new RuntimeException("Failed to create the GLFW window");
8191
}
82-
monitors = getMonitors();
8392
backend = initFW(window, appSettings);
8493
GLFW.glfwSwapInterval(appSettings.swapInterval);
8594
initInput();
@@ -97,6 +106,16 @@ private PointerBuffer getMonitors() {
97106
return monitors;
98107
}
99108

109+
private void listVideoModes(long monitor) {
110+
GLFWVidMode.Buffer buffer = GLFW.glfwGetVideoModes(monitor);
111+
while (buffer.hasRemaining()) {
112+
GLFWVidMode mode = buffer.get();
113+
SimpleLogger.d(getClass(), "Found videomode " + mode.width() + ", " + mode.height() + ", " +
114+
mode.redBits() + "." + mode.greenBits() + "." + mode.blueBits() + ", refresh: "
115+
+ mode.refreshRate());
116+
}
117+
}
118+
100119
/**
101120
* Initialises the glfw render framework, GLES/Vulkan etc
102121
* GLFW is already initialized before calling this method and the window handle is created
@@ -238,14 +257,6 @@ public VideoMode setVideoMode(VideoMode videoMode, int monitorIndex) {
238257
VideoMode result = videoMode;
239258
if (monitorIndex < monitors.capacity()) {
240259
if (videoMode.isFullScreen()) {
241-
GLFWVidMode.Buffer buffer = GLFW.glfwGetVideoModes(monitor);
242-
while (buffer.hasRemaining()) {
243-
GLFWVidMode mode = buffer.get();
244-
SimpleLogger.d(getClass(), "Found videomode " + mode.width() + ", " + mode.height() + ", " +
245-
mode.redBits() + "." + mode.greenBits() + "." + mode.blueBits() + ", refresh: "
246-
+ mode.refreshRate());
247-
}
248-
249260
GLFW.glfwSetWindowMonitor(window, monitor, 0, 0, videoMode.getWidth(), videoMode.getHeight(),
250261
GLFW.GLFW_DONT_CARE);
251262
GLFWVidMode vidMode = GLFW.glfwGetVideoMode(monitor);

0 commit comments

Comments
 (0)