Put this code System.setProperty ("org.lwjgl.opengl.Display.allowSoftwareOpenGL", "true");
The problem is solved in my case .. this will allow libgdx to run as openGL mode in the software.
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); } }
Paresh dudhat
source share