Full Screen

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
Tiranasta
Posts: 4
Joined: Tue May 15, 2007 7:31 am

Full Screen

Post by Tiranasta »

How do you move your program into full screen mode?
Masterhawk
Posts: 299
Joined: Mon Nov 27, 2006 6:52 pm
Location: GERMANY
Contact:

Post by Masterhawk »

Code: Select all

irrDevice = createDevice(driverType,
                                          dimension2d<s32>(1024,768),  
                                          32,
                                          TRUE, //fullscreen value
                                          true,
                                          true,
                                          this);
Tiranasta
Posts: 4
Joined: Tue May 15, 2007 7:31 am

Post by Tiranasta »

Thanks. I used that coding, but now I get the following error message when I try to run:

Could not create Direct3D9 Driver.
Dances
Posts: 454
Joined: Sat Jul 02, 2005 1:45 am
Location: Canada
Contact:

Post by Dances »

Your DLL may not support Direct3D; perhaps you weren't using that before OR it is an issue with your PC. Restart and if that doesn't help try EDT_OPENGL. If you're using GCC you have to recompile your DLL for D3D or download a recompiled one; they're on the forum... somewhere...
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

Are you sure that you're using the latest Irrlicht version?
Tiranasta
Posts: 4
Joined: Tue May 15, 2007 7:31 am

Post by Tiranasta »

Certain.
Post Reply