irrlicht wxwidgets mac os x

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
jidijaat
Posts: 7
Joined: Tue Mar 31, 2009 7:33 pm

irrlicht wxwidgets mac os x

Post by jidijaat »

i want to create a cross platform editor using wxwidgets for windows and mac os x. For graphics library i want to use irrlicht engine, its easy to bind irrlicht with wxwidgets on windows by this code

SIrrlichtCreationParameters param;
param.WindowId = (HWND)this->GetHandle();


But i am not able to find out the way for mac os x, when i write this code on mac

SIrrlichtCreationParameters param;
param.WindowId = this->GetHandle();

I get 2 different windows, one of irrlicht window and another of wxwidgets.
Please some one tell me that is this possible to bind wxwidgets and irrlicht on mac os x, if yes what is the way to make it happen.

Thanks & Regards..
hybrid
Admin
Posts: 14144
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

No, the external window param is not yet supported under OSX, just as many other things. It's not a general limit, it's just that we don't have enough OSX coders.
jidijaat
Posts: 7
Joined: Tue Mar 31, 2009 7:33 pm

Post by jidijaat »

Hello,

I have added this feature in Irrlicht engine

please see the the post
http://irrlicht.sourceforge.net/phpBB2/ ... 105#214105
Post Reply