libgdx中启动应用程序中的异常

时间:2013-03-16 12:00:26

标签: libgdx

    LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
    cfg.title = "my-gdx-game";
    cfg.useGL20 = false;
    cfg.width = 480;
    cfg.height = 320;

    new LwjglApplication(new MyGdxGame(), cfg);

我在桌面启动器类中使用此代码,但是我得到GdxRuntimeException:视频驱动程序不支持OpenGL。     有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

可能是因为:

 OpenGL is not supported by your video driver

桌面上的Libgdx要求桌面视频卡至少支持OpenGL 1.5(模拟OpengGL ES 1.x)。 OpenGL应该包含在您的操作系统的显卡驱动程序中(您应该在您的问题中包含有关您的平台的详细信息)。有关提示,请参阅OpenGL Getting Started Wiki

另见libGDX Exception in thread "LWJGL Application"