Page 1 of 1

Is there any way to use irrlicht device to win picture boxes

Posted: Thu Nov 20, 2008 8:17 am
by go
Hey, I'm now using Irrlicht with Windows MFC.

I can relate Irrlicht device to windows picture box and splilt in one picture box..

but I don't know how to apply it to many picture box .. Is there any way to do this?

Thanks

Posted: Thu Nov 20, 2008 2:45 pm
by Acki
you can use the endScene() function to draw in a specific window:

Code: Select all

driver->endScene(curHWND);

Posted: Thu Nov 20, 2008 3:38 pm
by go
oh maybe useful.

Thanks for your quick reply.