import org.lwjgl.opengl.Display; import org.lwjgl.opengl.GLContext; public class GPUInfo { public static void main(String[] args) throws Exception { Display.create(); System.out.println(GLContext.getCapabilities().OpenGL33); Display.destroy(); } }