Skip to content Skip to sidebar Skip to footer

LibGDX Exception In Thread "LWJGL Application"

I've been following the setup tutorial found at: libGDX setup tutorial. I'm not sure what's going on here. I can finally get the project to deploy in the emulator, however, the des

Solution 1:

You are lacking an OpenGL capable card. Libgdx requires at least OpenGL 1.5 on the desktop (for OpenGL ES 1.x emulation, 2.1 for OpenGL ES 2.0 emulation).

Either install up to date drivers, or if your card does not support OpenGL, get a new card. OpenGL 1.5 is supported by 10 year old graphics cards.


Solution 2:

Put this code

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

this will solve your problem..


Post a Comment for "LibGDX Exception In Thread "LWJGL Application""