0
我正在關注lwjgl的基礎知識教程。我目前正在嘗試製作一個簡單的窗口。不過,我有兩個問題。LWJGL操作!=未定義類型boolean,int
在我的init()方法我寫
if(glfwInit() != GL_TRUE){
throw new IllegalStateException("Unable to initialize GLFW");
}
,並在我的run()方法我寫
if(glfwWindowShouldClose(window) == GL_TRUE){
running = false;
}
在這兩種情況下
我得到
Exception in thread "EndlessRunner" java.lang.Error: Unresolved compilation problem:
The operator != is undefined for the argument type(s) boolean, int
at Main.init(Main.java:28)
at Main.run(Main.java:43)
at java.lang.Thread.run(Unknown Source)
但是似乎所有教程都以這種或那種方式使用這些行。