LWJGL Forum

Programming => Lightweight Java Gaming Library => Topic started by: chriddel on November 08, 2006, 12:30:59

Title: DisplayConfiguration not working in fullscreen?
Post by: chriddel on November 08, 2006, 12:30:59
Hi,

I want to change brightness and gamma correction in my game. I happily found the setDisplayConfiguration() method. Unfortunately it only seems to work in window mode (in fullscreen it doesnt crash but it seem to have no effect).


Display.setDisplayMode(mode);
Display.setFullscreen(true);

Display.create();
Display.setDisplayConfiguration(0.6f,0.3f,1f);


when I use Display.setFullScreen(false) it works just fine.
Any suggestions?

Regards,

Chris
Title: DisplayConfiguration not working in fullscreen?
Post by: chriddel on November 08, 2006, 12:46:32
Sorry... seams to be an ATI driver problem... I just tried it with a nvidia card and it works fine.

Regards,

Chris