LWJGL/opengl in eclipse



我似乎无法正确导入opengl。

我正在遵循这个简单的教程:

https://www.youtube.com/watch?v=ZKJC2cloIqc

据我所知,我有正确的jar和本机文件。

// I can import these
import org.lwjgl.opengl.Display;
import org.lwjgl.opengl.DisplayMode;   
//I cannot however import this:
import org.lwjgl.LWJGLEXCEPTION;
//and gl methods such as this are not recognized:
glClear(GL_COLOR_BUFFER_BIT);

我正在使用eclipse,我也有netbeans,并且正在讨论在本教程中使用intelij IDE是否可以实现这一点。

您没有导入GL11来使用gl方法(或某些方法的其他版本)

您可以使用静态导入,这样就不必将GL11放在每个方法或任何其他方法前面。

相关内容

  • 没有找到相关文章

最新更新