Hi,
is it somehow possible that Irrlicht only renders to a part of a window?
I want to use Irrlicht within an existing application. Within this application there is an open space (a panel) in the application where Irrlicht should draw to.
Is it possible to use Irrlicht within an axtiveX control?
Thanks
Criamon
Rendering without a window?
I just modified the createDevice call to take a hwnd param. Then in the func if the param is NULL, I let irrlicht do it's normal thing, otherwise I just have it use the passed hwnd. I then added a few other functions so I could call funcs instead of letting it have the WndProc. (like for WM_* handling and such). I also don't use the run() function, as I have my own message loop.
When I have some time, I'll put together my classes, and examples of having irrlicht windows in an MFC app.
When I have some time, I'll put together my classes, and examples of having irrlicht windows in an MFC app.