Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenGL is not supported by the video driver

Tags:

java

libgdx

When I use this code:

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);
   }
}

I get an exception like this:

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

any help?

like image 275
Vishal Singh Avatar asked Mar 22 '13 14:03

Vishal Singh


People also ask

How do I enable OpenGL?

Photoshop uses the OpenGL API to enable advanced graphics features such as 3D support, advanced compositing, and faster rendering times. To enable OpenGL in Photoshop, go to Edit > Preferences > Performance. Then, select Enable OpenGL Drawing.


2 Answers

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

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

Your code will look like this.

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);
   }
}
like image 167
Paresh Dudhat Avatar answered Sep 20 '22 21:09

Paresh Dudhat


You need to update your video drivers.

Basically the display drivers for your P.C

like image 24
Kumar Saurabh Avatar answered Sep 21 '22 21:09

Kumar Saurabh