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 is not supported by the video driver が発生します。何か助けはありますか?