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.
codydbgt
Posts: 7 Joined: Fri Nov 05, 2010 4:25 am
Location: US
Contact:
Post
by codydbgt » Fri Nov 12, 2010 5:46 am
I was wondering how I would get the irrlicht device window handle.
This is all I could find and it gives me an error but mabe I'm missing something
http://irrlicht.sourceforge.net/phpBB2/ ... d008f210ae
so i tried this
Code: Select all
reinterpret_cast<HWND>(video::IVideoDriver::getExposedVideoData()->OpenGLWin32.HWnd)
well of course I got a compile error since i was trying to call a class and not a object I think
slavik262
Posts: 753 Joined: Sun Nov 22, 2009 9:25 pm
Location: Wisconsin, USA
Post
by slavik262 » Fri Nov 12, 2010 7:48 am
Replace video::IVideoDriver:: with a pointer to the video driver and it will work a lot better.
greenya
Posts: 1012 Joined: Sun Jan 21, 2007 1:46 pm
Location: Ukraine
Contact:
Post
by greenya » Fri Nov 12, 2010 8:24 am
codydbgt wrote:
so i tried this
Code: Select all
reinterpret_cast<HWND>(video::IVideoDriver::getExposedVideoData()->OpenGLWin32.HWnd)
well of course I got a compile error since i was trying to call a class and not a object I think
To call getExposedVideoData() you need an instance of video::IVideoDriver; this instance can be received from device->getVideoDriver() call. And the device is a result of createDevice().
netpipe
Posts: 670 Joined: Fri Jun 06, 2008 12:50 pm
Location: Edmonton, Alberta, Canada
Contact:
Post
by netpipe » Sat Jan 04, 2020 8:36 pm
what is the linux version ?