我的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
任何帮助将不胜感激!