jME 3.10.0-alpha5
jMonkeyEngine Hub
May 28, 2026
Yes, angle rendering is enabled by default, but lwjglx-awt doesn’t support it, and the awt backend simply switches to OpenGL if it detects angle (thus displaying the warning). To suppress this message, you must explicitly configure rendering to OpenGL.
AppSettings settings = new AppSettings(true);
settings.setRenderer(AppSettings.LWJGL_OPENGL45);
Discussion in the ATmosphere