Hey there,
stupid question, but isn’t changing the display mode supported on Windows XP (SP 2) running Java 1.5.0_06 ?
I’m aksing because the follwing code outputs ‘false’ on my notebook (NIVIDIA QUADRO GeForce FX G0 1400):
final GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
final GraphicsDevice[] gs = ge.getScreenDevices();
for (int i = gs.length-1; i >= 0; i--) {
final GraphicsDevice gd = gs[i];
System.out.println(gd.isDisplayChangeSupported());
}
Btw. I’ve installed the latest graphics driver from DELL (not a month old) and DirectX 9.0c, if those matter…
further LWJGL apps like TribalTrouble work well…