Hello Guest

(CODE IN DESC!) Null pointer exception when using code: glfwShowWindow(window);

  • 2 Replies
  • 4326 Views
I'm using Linux Mint 18 MATE and have the latest nvidia drivers.
This is the code:
Code: [Select]
package Debug;

import static org.lwjgl.glfw.GLFW.*;

public class Main {

public Main() {
initWindow();
}

private void initWindow() {
if (glfwInit() == false) {
System.err.println("GLFW failed to initialize!");
System.exit(-1);
}

long window = glfwCreateWindow(640, 480, "Debug", 0, 0);
glfwShowWindow(window);
}

public static void main(String[] args) {
new Main();
}
}

*

Offline spasi

  • *****
  • 2247
    • WebHotelier
Could you please try the getting started sample? You are not setting an error callback so it's hard to say what might be wrong.

Could you please try the getting started sample? You are not setting an error callback so it's hard to say what might be wrong.

It has worked before, and I've done it many times, but this is the first time it happens.

Anyways I'll try your example, thanks for answering!