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

Started by Peilot, December 22, 2016, 12:56:24

Previous topic - Next topic

Peilot

I'm using Linux Mint 18 MATE and have the latest nvidia drivers.
This is the code:
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();
	}
}

spasi

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.

Peilot

Quote from: spasi on December 22, 2016, 13:47:27
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!