Hi. I'm a newbie. So forgive me if this sounds stupid.
I'm using jME. this code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| package bin;
import com.jme.app.*;
public class Main extends SimpleGame{
public static void main(String[] args) { Main m = new Main(); m.setConfigShowMode(ConfigShowMode.AlwaysShow); m.start(); }
@Override protected void simpleInitGame() { }
} |
gives me:
1 2 3 4 5 6 7 8 9 10
| Jan 27, 2010 6:30:40 PM com.jme.app.BaseSimpleGame initSystem SEVERE: Could not create displaySystem com.jme.system.JmeException: Cannot create window: Pixel format not accelerated at com.jme.system.lwjgl.LWJGLDisplaySystem.initDisplay(LWJGLDisplaySystem.java:444) at com.jme.system.lwjgl.LWJGLDisplaySystem.createWindow(LWJGLDisplaySystem.java:143) at com.jme.app.BaseSimpleGame.initSystem(BaseSimpleGame.java:381) at com.jme.app.BaseGame.start(BaseGame.java:70) at bin.Main.main(Main.java:22) Java Result: 1 BUILD SUCCESSFUL (total time: 10 seconds) |
Please help. I'm running Windows 7 32-Bit Edition Enterprise. AMD Sempron 3000+ Graphics Processor.