Hello, I believe I'm doing something incredibly wrong here, but I'm not sure what.
Here's what I've done:
1. Created a new project in eclipse.
2. Referenced all the external lwjgl jar files.
3. Copy and pasted all the
simple rendering code into a Main.java file (I just renamed the class).
4. Attempted to run this code.
The only errors I get from this are exceptions having to do with destroying the display:
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class org.lwjgl.opengl.Display -- I bet it is the issue, but I'm not sure how to solve it.
at t2.Main.cleanup(Main.java:107) -- Actual code: "Display.destroy();"
at t2.Main.main(Main.java:42) -- Actual code: "cleanup();"
The only thing I really want is to get right now is rendering with primitives so that I can visually test my engine (t2) as I work on it.
Thanks and sorry,
--SgtSparky