I followed the wiki tutorial:
http://lwjgl.org/wiki/doku.php/lwjgl/tutorials/display/basicdisplayMy code is the same so I won't bore you with example code, but I'm getting an error:
"Unable to create display"
This is after failing the following code:
//Create the display
try {
Display.setDisplayMode(chosenMode);
Display.setTitle("An Example Title");
Display.create();
} catch (LWJGLException e) {
Sys.alert("Error", "Unable to create display");
System.exit(0);
}
Before getting here I System.out.println the chosenMode.toString(), and it prints 640 x 480 x 16 @70Hz so I know it's available.
Do I need to install OpenGL or some such thing to get this to work??