Search found 3 matches

by allec
Wed Jul 20, 2011 11:08 am
Forum: Beginners Help
Topic: Problem with Borland (now Embarcadero) Builder6
Replies: 7
Views: 1001

Re: Problem with Borland (now Embarcadero) Builder6

I have changed my code to :
IrrlichtDevice *device = createDevice(video::EDT_DIRECT3D9, core::dimension2d<u32>(800,600), 32, false, true, false, 0);
bool ret1 = device->isWindowActive();
bool ret2 = device->isWindowFocused();
bool ret3 = device->isDriverSupported(EDT_DIRECT3D9);
if(ret1 && ret2 ...
by allec
Tue Jul 19, 2011 11:17 pm
Forum: Beginners Help
Topic: Problem with Borland (now Embarcadero) Builder6
Replies: 7
Views: 1001

Re: Problem with Borland (now Embarcadero) Builder6

Yes i am quite sure that the device was created : I check it as follow
IrrlichtDevice *device = createDevice(video::EDT_DIRECT3D9, core::dimension2d<u32>(800,600), 32, false, true, false, 0);
if (!device) ShowMessage("Error");
else ShowMessage("Ok");
video::IVideoDriver* driver = device ...
by allec
Tue Jul 19, 2011 5:22 pm
Forum: Beginners Help
Topic: Problem with Borland (now Embarcadero) Builder6
Replies: 7
Views: 1001

Problem with Borland (now Embarcadero) Builder6

Good evening

A few years ago, i spent some time trying IrrLicht (version 0.8 at that time) with Borland Builder6, and it was - and is still - working properly. I could compile and use most of the examples provided.

Now that i have more time available, i would like to start again with IrrLicht, now ...