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。 有什么帮助吗?
答案 0 :(得分:1)
可能是因为:
OpenGL is not supported by your video driver
桌面上的Libgdx要求桌面视频卡至少支持OpenGL 1.5(模拟OpengGL ES 1.x)。 OpenGL应该包含在您的操作系统的显卡驱动程序中(您应该在您的问题中包含有关您的平台的详细信息)。有关提示,请参阅OpenGL Getting Started Wiki。