I don’t know why 2 users are getting this (one has ATI XPress 200 and this one here has a GeForce 6800). Everybody else who’s tried Linux, on my team and elsewhere, has been just fine.
Game Exception on Stencyl
-------------------------
org.lwjgl.opengl.OpenGLException: Invalid enum (1280)
at org.lwjgl.opengl.Util.checkGLError(Util.java:56)
at org.lwjgl.opengl.Display.swapBuffers(Display.java:564)
at org.lwjgl.opengl.Display.update(Display.java:580)
at com.stencyl.engine.lwjgl.LWJGLMode.flip(Unknown Source)
at com.golden.gamedev.GameObject.start(Unknown Source)
at com.golden.gamedev.GameEngine.startGameLoop(Unknown Source)
at com.golden.gamedev.Game.start(Unknown Source)
at com.golden.gamedev.GameLoader.start(Unknown Source)
at com.stencyl.engine.Framework.startGame(Unknown Source)
at com.stencyl.engine.Framework.initializeGame(Unknown Source)
at scripts.states.EntryState.main(Unknown Source)
Game Environment
----------------
Date/Time : Mon, 05 Mar 2007 at 06:36
Java Version : 1.6.0-b105 Sun Microsystems Inc.
GTGE Version : 0.2.4
Environment : OpenGL LWJGL Windowed Mode [640x480] with VSync
Operating System : Linux 2.6.17-11-generic unknown
User Name : XXXXXXXXXXXx
Working Directory : /home/XXXXXXX/Desktop/StencylLinux/Stencyl
public boolean flip()
{
if (Display.isCloseRequested())
{
windowListener.windowClosing(null);
}
else if (Display.isActive())
{
Display.update();
}
else
{
if (Display.isVisible() || Display.isDirty())
{
Display.update();
}
}
return true;
}