LWJGL glfwInit失败,并发生VerifyError

时间:2019-02-08 21:02:45

标签: java lwjgl glfw

我的LWJGL应用程序失败,出现java.lang.VerifyError。 异常详细信息如下。

这是代码的相关部分:

GLFWErrorCallback.createPrint(System.err).set();

if (!glfwInit()) // This is the line that causes the error!
    throw new IllegalStateException("Unable to initialize GLFW");

glfwDefaultWindowHints();
glfwWindowHint(GLFW_VISIBLE, GLFW_FALSE);
glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE);

在执行此代码之前,没有什么值得注意的事情。

堆栈溢出不会让我将代码放在<pre>标记中,因此这里是一个pastebin:https://pastebin.com/vaxvkHzg

任何帮助将不胜感激!

0 个答案:

没有答案