• <small id='2MPU9'></small><noframes id='2MPU9'>

  • <tfoot id='2MPU9'></tfoot>

      <i id='2MPU9'><tr id='2MPU9'><dt id='2MPU9'><q id='2MPU9'><span id='2MPU9'><b id='2MPU9'><form id='2MPU9'><ins id='2MPU9'></ins><ul id='2MPU9'></ul><sub id='2MPU9'></sub></form><legend id='2MPU9'></legend><bdo id='2MPU9'><pre id='2MPU9'><center id='2MPU9'></center></pre></bdo></b><th id='2MPU9'></th></span></q></dt></tr></i><div id='2MPU9'><tfoot id='2MPU9'></tfoot><dl id='2MPU9'><fieldset id='2MPU9'></fieldset></dl></div>
      <legend id='2MPU9'><style id='2MPU9'><dir id='2MPU9'><q id='2MPU9'></q></dir></style></legend>
        <bdo id='2MPU9'></bdo><ul id='2MPU9'></ul>

      1. 视频驱动程序不支持 OpenGL

        时间:2023-05-19
          • <i id='r3cat'><tr id='r3cat'><dt id='r3cat'><q id='r3cat'><span id='r3cat'><b id='r3cat'><form id='r3cat'><ins id='r3cat'></ins><ul id='r3cat'></ul><sub id='r3cat'></sub></form><legend id='r3cat'></legend><bdo id='r3cat'><pre id='r3cat'><center id='r3cat'></center></pre></bdo></b><th id='r3cat'></th></span></q></dt></tr></i><div id='r3cat'><tfoot id='r3cat'></tfoot><dl id='r3cat'><fieldset id='r3cat'></fieldset></dl></div>

              <bdo id='r3cat'></bdo><ul id='r3cat'></ul>
              <legend id='r3cat'><style id='r3cat'><dir id='r3cat'><q id='r3cat'></q></dir></style></legend>
            • <small id='r3cat'></small><noframes id='r3cat'>

                <tbody id='r3cat'></tbody>
                <tfoot id='r3cat'></tfoot>

                  本文介绍了视频驱动程序不支持 OpenGL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  当我使用这段代码时:

                  import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
                  import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
                  
                  public class Main {
                     public static void main(String[] args) {
                        LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
                        cfg.title = "MtxJungleGameMenu";
                        cfg.useGL20 = false;
                        cfg.width = 800;
                        cfg.height = 480;
                        new LwjglApplication(new MainStarter(), cfg);
                     }
                  }
                  

                  我遇到这样的异常:

                  线程LWJGL 应用程序"com.badlogic.gdx.utils.GdxRuntimeException 中的异常:com.badlogic.gdx.utils.GdxRuntimeException:视频驱动程序不支持 OpenGL.

                  Exception in thread "LWJGL Application" com.badlogic.gdx.utils.GdxRuntimeException: com.badlogic.gdx.utils.GdxRuntimeException: OpenGL is not supported by the video driver.

                  有什么帮助吗?

                  推荐答案

                  把这段代码System.setProperty("org.lwjgl.opengl.Display.allowSoftwareOpenGL", "true");

                  Put this code System.setProperty("org.lwjgl.opengl.Display.allowSoftwareOpenGL", "true");

                  在我的情况下问题解决了.这将允许 libgdx 以软件 openGL 模式运行.

                  Problem solved in my case.. this will allow libgdx to run as software openGL mode.

                  您的代码将如下所示.

                  import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
                  import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
                  
                  public class Main {
                     public static void main(String[] args) {
                        LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
                        System.setProperty("org.lwjgl.opengl.Display.allowSoftwareOpenGL", "true");
                        cfg.title = "MtxJungleGameMenu";
                        cfg.useGL20 = false;
                        cfg.width = 800;
                        cfg.height = 480;
                        new LwjglApplication(new MainStarter(), cfg);
                     }
                  }
                  

                  这篇关于视频驱动程序不支持 OpenGL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何强制 eclipse 在每次构建时更新我的​​硬件 下一篇:libgdx 的文本字段中的特殊字符不起作用

                  相关文章

                  最新文章

                  <tfoot id='PZiVK'></tfoot>
                  <legend id='PZiVK'><style id='PZiVK'><dir id='PZiVK'><q id='PZiVK'></q></dir></style></legend>
                  • <bdo id='PZiVK'></bdo><ul id='PZiVK'></ul>

                  <small id='PZiVK'></small><noframes id='PZiVK'>

                1. <i id='PZiVK'><tr id='PZiVK'><dt id='PZiVK'><q id='PZiVK'><span id='PZiVK'><b id='PZiVK'><form id='PZiVK'><ins id='PZiVK'></ins><ul id='PZiVK'></ul><sub id='PZiVK'></sub></form><legend id='PZiVK'></legend><bdo id='PZiVK'><pre id='PZiVK'><center id='PZiVK'></center></pre></bdo></b><th id='PZiVK'></th></span></q></dt></tr></i><div id='PZiVK'><tfoot id='PZiVK'></tfoot><dl id='PZiVK'><fieldset id='PZiVK'></fieldset></dl></div>