Screen is flickering in fullscreen mode

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Mercator
Posts: 16
Joined: Fri Jan 27, 2006 4:31 pm

Screen is flickering in fullscreen mode

Post by Mercator »

When I run my game in fullscreen mode my screen flickers a little bit.
What could be the reason?
I created my device in this way:

Code: Select all

Device = createDevice(EDT_OPENGL, core::dimension2d<s32>(1024, 768),32, true, false, false, &receiver);
dhenton9000
Posts: 395
Joined: Fri Apr 08, 2005 8:46 pm

Re: Screen is flickering in fullscreen mode

Post by dhenton9000 »

Mercator wrote:When I run my game in fullscreen mode my screen flickers a little bit.
What could be the reason?
I created my device in this way:

Code: Select all

Device = createDevice(EDT_OPENGL, core::dimension2d<s32>(1024, 768),32, true, false, false, &receiver);
when this happens to me, its a vsync issue, I usually set the last false to true to limit fps to the vsync rate

YMMV.
jam
Posts: 409
Joined: Fri Nov 04, 2005 3:52 am

Post by jam »

When you go to fullscreen the monitors refresh rate get's set to 60Hz that causes the flicker. If your video drivers have the option to set the refresh rate by force to a certain value, I would set it to a value of 75Hz or above to the limit that your monitor can handle.
Post Reply